From 91dfff58c1e53e1573441ffe439cb67ff48344e3 Mon Sep 17 00:00:00 2001 From: oddlama Date: Sun, 30 May 2021 03:18:45 +0200 Subject: [PATCH] Execute partprobe only if it exists (not given in gentoo chroot) --- scripts/utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/utils.sh b/scripts/utils.sh index b09d602..ba167ed 100644 --- a/scripts/utils.sh +++ b/scripts/utils.sh @@ -150,7 +150,7 @@ function get_device_by_blkid_field() { local field_value="$2" blkid -g \ || die "Error while executing blkid -g" - partprobe + type partprobe && partprobe local dev dev="$(blkid -o export -t "$blkid_field=$field_value")" \ || die "Error while executing blkid to find $blkid_field=$field_value"