mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
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() {
|
main() {
|
||||||
if [ -z "${KEEPBUNDLE-}" ]; then
|
if [ -z "${KEEPBUNDLE-}" ]; then
|
||||||
echo "Removing bundles/"
|
echo "Removing bundles/"
|
||||||
rm -rf "bundles/*"
|
rm -rf bundles/*
|
||||||
echo
|
echo
|
||||||
fi
|
fi
|
||||||
mkdir -p bundles
|
mkdir -p bundles
|
||||||
|
|
Loading…
Add table
Reference in a new issue