From f85074f0651608a33a26dfbbbb4e718ae63cbc2b Mon Sep 17 00:00:00 2001 From: JEEVITHA KANNAN K S Date: Tue, 1 Oct 2024 03:48:46 +0530 Subject: [PATCH] Fix uuid retrieve bug (#696) --- core/tabs/utils/auto-mount.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tabs/utils/auto-mount.sh b/core/tabs/utils/auto-mount.sh index 7293f26a..f4eb59b2 100644 --- a/core/tabs/utils/auto-mount.sh +++ b/core/tabs/utils/auto-mount.sh @@ -21,7 +21,7 @@ select_drive() { # Function to get UUID and FSTYPE of the selected drive get_uuid_fstype() { - UUID=$(blkid -s UUID -o value "${partition}") + UUID=$("$ESCALATION_TOOL" blkid -s UUID -o value "${partition}") FSTYPE=$(lsblk -no FSTYPE "${partition}") NAME=$(lsblk -no NAME "${partition}")