Skip to content

Commit

Permalink
Clean up any dangling cidfiles (Container ID files) in workspace.
Browse files Browse the repository at this point in the history
We previously built container images in a docker_containers
subdirectory, but that directory and its cleanup were removed in #881
which results in the cidfile left in workspace between runs.
  • Loading branch information
nuclearsandwich committed May 17, 2024
1 parent 7fa41d2 commit 5a9d616
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@
'rm -fr $WORKSPACE/repositories',
'mkdir -p $WORKSPACE/repositories',
'rm -fr $WORKSPACE/docker_generating_docker',
'mkdir -p $WORKSPACE/docker_generating_docker'
'mkdir -p $WORKSPACE/docker_generating_docker',
'rm -f $WORKSPACE/*.cid',
])
))@
@(SNIPPET(
Expand Down

0 comments on commit 5a9d616

Please sign in to comment.