Update contrib/nuke-graph-directory.sh

Signed-off-by: Brett Milford <brettmilford@gmail.com>
This commit is contained in:
Brett Milford 2021-04-09 10:03:13 +10:00
parent 398cb1dc4f
commit a0d1a1f78c

View file

@ -60,14 +60,12 @@ if command -v btrfs > /dev/null 2>&1; then
# Find btrfs subvolumes under $dir checking for inode 256 # Find btrfs subvolumes under $dir checking for inode 256
# Source: http://stackoverflow.com/a/32865333 # Source: http://stackoverflow.com/a/32865333
for subvol in $(find "$dir" -type d -inum 256 | sort -r); do for subvol in $(find "$dir" -type d -inum 256 | sort -r); do
if [ "$dir" != "$subvol" ]; then if [ "$dir" != "$subvol" ] && subvolType="$(stat -f --format=%T "$subvol")" && [ "$subvolType" = "btrfs" ]; then
if [ "$(stat -f --format=%T $subvol)" == "btrfs" ]; then
( (
set -x set -x
btrfs subvolume delete "$subvol" btrfs subvolume delete "$subvol"
) )
fi fi
fi
done done
fi fi