Skip to content

Commit 1bb6971

Browse files
committed
roc-basic-cli
1 parent a69c346 commit 1bb6971

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

pkgs/roc/lib/build.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,14 @@ if [[ -d "$platform_path" ]]; then
8787
fi
8888
abs_app_dir="$(realpath "$app_path")"
8989
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"
9095
host_bin="$platform_path/dynhost"
91-
roc_build_file="build.roc"
9296
if [[ -e "$roc_build_file" ]]; then
93-
# nix_file="flake.nix"
97+
# nix_file="./flake.nix"
9498
# if [[ -f "$nix_file" ]] && command -v nix && eval "nix eval --json .#devShell.x86_64-linux >/dev/null 2>&1"; then
9599
# nix develop --command "roc \"$roc_build_file\""
96100
# else
0 Bytes
Binary file not shown.

roc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
src/roc

0 commit comments

Comments
 (0)