We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a69c346 commit 1bb6971Copy full SHA for 1bb6971
3 files changed
pkgs/roc/lib/build.sh
@@ -87,10 +87,14 @@ if [[ -d "$platform_path" ]]; then
87
fi
88
abs_app_dir="$(realpath "$app_path")"
89
pushd "$platform_path" >/dev/null
90
+ jump_start_file="./jump-start.sh"
91
+ if [[ -e "$jump_start_file" ]]; then
92
+ "$jump_start_file"
93
+ fi
94
+ roc_build_file="./build.roc"
95
host_bin="$platform_path/dynhost"
- roc_build_file="build.roc"
96
if [[ -e "$roc_build_file" ]]; then
- # nix_file="flake.nix"
97
+ # nix_file="./flake.nix"
98
# if [[ -f "$nix_file" ]] && command -v nix && eval "nix eval --json .#devShell.x86_64-linux >/dev/null 2>&1"; then
99
# nix develop --command "roc \"$roc_build_file\""
100
# else
pkgs/roc/platforms/go-basic-cli/metadata_linux-x64.rm
0 Bytes
roc
@@ -0,0 +1 @@
1
+src/roc
0 commit comments