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
1 changed files with 5 additions and 7 deletions

View File

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