Skip to content

Commit

Permalink
fix: build: make the build/actors/pack.sh script work on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
Stebalien committed Jun 14, 2022
1 parent 89a486c commit d8d8ed1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/actors/pack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ NETWORKS=(devnet mainnet caterpillarnet butterflynet testing testing-fake-proofs
echo "Downloading bundles for actors version ${VERSION}, release ${RELEASE}"

TARGET_FILE="$(pwd)/${VERSION}.tar.zst"
WORKDIR=$(mktemp --tmpdir -d "actor-bundles-${VERSION}.XXXXXXXXXX")
WORKDIR=$(mktemp -d -t "actor-bundles-${VERSION}.XXXXXXXXXX")
trap 'rm -rf -- "$WORKDIR"' EXIT

pushd "${WORKDIR}"
Expand Down

0 comments on commit d8d8ed1

Please sign in to comment.