Skip to content

Commit

Permalink
ci: Don't use env vars in non-shell commands
Browse files Browse the repository at this point in the history
  • Loading branch information
elldritch committed Jun 15, 2018
1 parent f72b2bc commit dd0772b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ jobs:
command: |
cp $(which fossa) $WORKSPACE
- store_test_results:
path: $TEST_RESULTS
path: /tmp/test-results
- store_artifacts:
path: $ARTIFACTS
path: /tmp/artifacts
- persist_to_workspace:
root: $WORKSPACE
root: /tmp/workspace
paths:
- fossa
test:
Expand All @@ -70,7 +70,7 @@ jobs:
- image: quay.io/fossa/fossa-cli-test:latest
steps:
- attach_workspace:
at: $WORKSPACE
at: /tmp/workspace
- run:
name: Load workspace
command: |
Expand Down

0 comments on commit dd0772b

Please sign in to comment.