Skip to content

Commit

Permalink
build avm transpiler if we are on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
just-mitch committed Mar 7, 2024
1 parent df089de commit 3618a57
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions avm-transpiler/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ if [ -n "$CMD" ]; then
fi

# Attempt to just pull artefacts from CI and exit on success.
[ -n "${USE_CACHE:-}" ] && ./bootstrap_cache.sh && exit
if [ "$(uname)" != "Darwin" ] && [ -n "${USE_CACHE:-}" ]; then
./bootstrap_cache.sh && exit
fi

./scripts/bootstrap_native.sh
./scripts/bootstrap_native.sh

0 comments on commit 3618a57

Please sign in to comment.