Skip to content

Commit

Permalink
Merge pull request #37 from jenny-miggin/fix-bash-env
Browse files Browse the repository at this point in the history
correctly escape path
  • Loading branch information
marboledacci authored Sep 19, 2024
2 parents 9a395d7 + 45837a1 commit 8cd7d24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ executors:
xcode: 14.2.0
machine:
machine:
image: ubuntu-2004:202101-01
image: ubuntu-2004:current

jobs:
install:
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if [ ! -w "${JQ_EVAL_INSTALL_DIR}" ]; then
$SUDO mkdir -p "${JQ_EVAL_INSTALL_DIR}"
fi

echo "export PATH=$PATH:\"${JQ_EVAL_INSTALL_DIR}\"" >> "$BASH_ENV"
echo "export PATH=\$PATH:\"${JQ_EVAL_INSTALL_DIR}\"" >> "$BASH_ENV"
. "$BASH_ENV"

# check if jq needs to be installed
Expand Down

0 comments on commit 8cd7d24

Please sign in to comment.