Skip to content

Commit

Permalink
fix: Don't expand $PATH when writing to BASH_ENV (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
ravron authored Oct 13, 2023
1 parent 8541105 commit 23c6812
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ commands:
# this way steps that are run within a span can use the raw buildevents if desired
echo "export BUILDEVENTS_SPAN_ID=$BUILDEVENTS_SPAN_ID" >> $BASH_ENV
echo "export PATH=$PATH:~/project/bin/be-$(uname -s | tr '[:upper:]' '[:lower:]')-$(uname -m)" >> $BASH_ENV
echo 'export PATH=$PATH'":~/project/bin/be-$(uname -s | tr '[:upper:]' '[:lower:]')-$(uname -m)" >> $BASH_ENV
### run the job's steps
- steps: << parameters.steps >>
Expand Down

0 comments on commit 23c6812

Please sign in to comment.