From 0e3d41bc3e1abe64811fe181f539444f8163ed76 Mon Sep 17 00:00:00 2001 From: Eric Renfro Date: Mon, 11 Nov 2024 12:09:13 -0500 Subject: [PATCH] Fix typo in directory name --- scripts/mount-btrfs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/mount-btrfs b/scripts/mount-btrfs index 54563a0..42375f6 100755 --- a/scripts/mount-btrfs +++ b/scripts/mount-btrfs @@ -22,7 +22,7 @@ hook_before() { hook_fail() { if mount | grep '\.btrfs' &>/dev/null; then - umount /.brtfs || exit 200 + umount /.btrfs || exit 200 fi } @@ -32,7 +32,7 @@ hook_after() { hook_final() { if mount | grep '\.btrfs' &>/dev/null; then - umount /.brtfs || exit 200 + umount /.btrfs || exit 200 fi }