Skip to content

Commit

Permalink
ci: fix mv on non exisitent directory (#272)
Browse files Browse the repository at this point in the history
Signed-off-by: Darren Murray <[email protected]>
  • Loading branch information
dmurray-lacework authored Dec 21, 2020
1 parent 18e624f commit 4f101cf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@ jobs:
- run:
command: |
mkdir circleci-artifacts/
mv lacework-lacework-cli* circleci-artifacts/
if [ `ls -1 lacework-lacework-cli* 2>/dev/null | wc -l ` -gt 0 ]; then
mv lacework-lacework-cli* circleci-artifacts/
fi
- store_artifacts:
path: circleci-artifacts
- slack/status:
Expand Down

0 comments on commit 4f101cf

Please sign in to comment.