0
0
Fork 0
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:
Adrian Dvergsdal 2020-07-17 01:38:38 +02:00
parent a03ecdf4fc
commit 6e68b54efa
No known key found for this signature in database
GPG key ID: C1E9E2D9552A42D2

View file

@ -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
} }