Skip to content

Commit

Permalink
Clean up any dangling cidfiles (Container ID files) in workspace. (#1047
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 authored May 22, 2024
1 parent 8e8381f commit ffc6a1c
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 ffc6a1c

Please sign in to comment.