Fix typo in directory name

This commit is contained in:
Eric Renfro 2024-11-11 12:09:13 -05:00
parent 703d281308
commit 0e3d41bc3e
Signed by: psi-jack
SSH key fingerprint: SHA256:1TKB8Z257L8EHK8GWNxKgMhD8a+FAR+f+j3nnlcuNVM

View file

@ -22,7 +22,7 @@ hook_before() {
hook_fail() { hook_fail() {
if mount | grep '\.btrfs' &>/dev/null; then if mount | grep '\.btrfs' &>/dev/null; then
umount /.brtfs || exit 200 umount /.btrfs || exit 200
fi fi
} }
@ -32,7 +32,7 @@ hook_after() {
hook_final() { hook_final() {
if mount | grep '\.btrfs' &>/dev/null; then if mount | grep '\.btrfs' &>/dev/null; then
umount /.brtfs || exit 200 umount /.btrfs || exit 200
fi fi
} }