Fix "Removing bundles/" not actually removing bundles
Before: Running `ls -la bundles/` before, and after removing: ls -la bundles/ total 16 drwxr-xr-x 7 root root 224 Jul 12 12:25 . drwxr-xr-x 1 root root 4096 Jul 12 12:30 .. drwxr-xr-x 2 root root 64 Jul 12 10:00 dynbinary drwxr-xr-x 6 root root 192 Jul 12 12:25 dynbinary-daemon lrwxrwxrwx 1 root root 1 Jul 12 12:25 latest -> . drwxr-xr-x 92 root root 2944 Jul 12 12:29 test-integration Removing bundles/ ls -la bundles/ total 16 drwxr-xr-x 7 root root 224 Jul 12 12:25 . drwxr-xr-x 1 root root 4096 Jul 12 12:30 .. drwxr-xr-x 2 root root 64 Jul 12 10:00 dynbinary drwxr-xr-x 6 root root 192 Jul 12 12:25 dynbinary-daemon lrwxrwxrwx 1 root root 1 Jul 12 12:25 latest -> . drwxr-xr-x 92 root root 2944 Jul 12 12:29 test-integration After: Running `ls -la bundles/` before, and after removing: ls -la bundles/ total 16 drwxr-xr-x 7 root root 224 Jul 12 12:25 . drwxr-xr-x 1 root root 4096 Jul 12 12:30 .. drwxr-xr-x 2 root root 64 Jul 12 10:00 dynbinary drwxr-xr-x 6 root root 192 Jul 12 12:25 dynbinary-daemon lrwxrwxrwx 1 root root 1 Jul 12 12:25 latest -> . drwxr-xr-x 92 root root 2944 Jul 12 12:29 test-integration Removing bundles/ ls -la bundles/ total 4 drwxr-xr-x 2 root root 64 Jul 12 12:25 . drwxr-xr-x 1 root root 4096 Jul 12 12:30 .. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
aa8249ae1b
commit
f75f34249b
1 changed files with 1 additions and 1 deletions
|
@ -183,7 +183,7 @@ bundle() {
|
|||
main() {
|
||||
if [ -z "${KEEPBUNDLE-}" ]; then
|
||||
echo "Removing bundles/"
|
||||
rm -rf "bundles/*"
|
||||
rm -rf bundles/*
|
||||
echo
|
||||
fi
|
||||
mkdir -p bundles
|
||||
|
|
Loading…
Reference in a new issue