Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Remove quotes where shell expansion is needed
Browse files Browse the repository at this point in the history
  • Loading branch information
kj4ezj committed Nov 6, 2020
1 parent 5c07451 commit 83aae30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .cicd/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if [[ $(uname) == 'Darwin' && $FORCE_LINUX != true ]]; then
else # Linux
ARGS="${ARGS:-"--rm --init -v $(pwd):$MOUNTED_DIR"}"
. "$HELPERS_DIR/file-hash.sh" "$CICD_DIR/platforms/$PLATFORM_TYPE/$IMAGE_TAG.dockerfile"
PRE_COMMANDS="cd '$MOUNTED_DIR/build/packages' && chmod 755 \"./*.sh\""
PRE_COMMANDS="cd '$MOUNTED_DIR/build/packages' && chmod 755 ./*.sh"
if [[ "$IMAGE_TAG" =~ "ubuntu" ]]; then
ARTIFACT='*.deb'
PACKAGE_TYPE='deb'
Expand Down

0 comments on commit 83aae30

Please sign in to comment.