mirror of
https://github.com/atmoz/sftp.git
synced 2024-11-17 12:51:33 -05:00
Ignore cleanup failure
This commit is contained in:
parent
a03ecdf4fc
commit
6e68b54efa
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ function tearDown() {
|
||||||
retireContainer "$containerName"
|
retireContainer "$containerName"
|
||||||
|
|
||||||
if [ "$argCleanup" == "cleanup" ] && [ -d "$containerTmpDir" ]; then
|
if [ "$argCleanup" == "cleanup" ] && [ -d "$containerTmpDir" ]; then
|
||||||
rm -rf "$containerTmpDir"
|
rm -rf "$containerTmpDir" || true # Can fail on GitHub Actions
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue