Skip to content

Commit

Permalink
fix(circleci): do not delete command.txt from workdir
Browse files Browse the repository at this point in the history
  • Loading branch information
oesteban authored Apr 4, 2019
1 parent 55b95c6 commit 789ef0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ jobs:
- run:
name: Clean-up work directory (just leave reports & commandlines)
command: |
find /tmp/t1w/work -type f ! -name "report.rst" ! -name "command.txt" -delete
find /tmp/t1w/work -type f -not -name "report.rst" -and -not -name "command.txt" -delete
- store_artifacts:
path: /tmp/t1w/work
Expand Down Expand Up @@ -434,7 +434,7 @@ jobs:
- run:
name: Clean-up work directory (just leave reports & commandlines)
command: |
find /tmp/bold/work -type f ! -name "report.rst" ! -name "command.txt" -delete
find /tmp/bold/work -type f -not -name "report.rst" -and -not -name "command.txt" -delete
- store_artifacts:
path: /tmp/bold/work
Expand Down

0 comments on commit 789ef0b

Please sign in to comment.