Skip to content

Commit

Permalink
Use quotes when extending PATH. (#12662)
Browse files Browse the repository at this point in the history
* Use quotes when extending PATH env var, in order to handle potential space characters.
  • Loading branch information
pkrog authored and bgruening committed Dec 17, 2018
1 parent 7d85e2d commit ca4be74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ set -u
source .circleci/common.sh

# Set path
echo "export PATH=$WORKSPACE/miniconda/bin:$PATH" >> $BASH_ENV
echo "export PATH=\"$WORKSPACE/miniconda/bin:$PATH\"" >> $BASH_ENV
source $BASH_ENV

# Make sure the CircleCI config is up to date.
Expand Down
2 changes: 1 addition & 1 deletion recipes/r-biodb/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ source:
sha256: 709b941fb1bb738400228aaab31876d255df32bb634139023f7984624880c318

build:
number: 0
number: 1
rpaths:
- lib/R/lib/
- lib/
Expand Down

0 comments on commit ca4be74

Please sign in to comment.