Skip to content

Commit

Permalink
use double quote to prevent globbing and word splitting
Browse files Browse the repository at this point in the history
  • Loading branch information
taitruong committed Dec 28, 2023
1 parent 4e2f400 commit b1f5c07
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ts-relayer-tests/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ docker run --rm -v "$(pwd)":/code --platform linux/amd64 \
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
cosmwasm/workspace-optimizer:0.15.0

mkdir -p $SCRIPT_DIR/internal
cp $ARTIFACTS_DIR/*.wasm $SCRIPT_DIR/internal
cp $EXTERNAL_WASMS_DIR/*.wasm $SCRIPT_DIR/internal
mkdir -p "$SCRIPT_DIR/internal"
cp "$ARTIFACTS_DIR/*.wasm $SCRIPT_DIR/internal"
cp "$EXTERNAL_WASMS_DIR/*.wasm $SCRIPT_DIR/internal"

echo "done. avaliable wasm blobs:"
ls ./ts-relayer-tests/internal

0 comments on commit b1f5c07

Please sign in to comment.