Fixed ignoring type output

This commit is contained in:
oddlama 2021-05-30 21:28:06 +02:00
parent 0ca4967160
commit 7133ff4484
No known key found for this signature in database
GPG Key ID: 14EFE510775FE39A
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ function get_device_by_blkid_field() {
local field_value="$2"
blkid -g \
|| die "Error while executing blkid -g"
type partprobe && partprobe
type partprobe &>/dev/null && partprobe
local dev
dev="$(blkid -o export -t "$blkid_field=$field_value")" \
|| die "Error while executing blkid to find $blkid_field=$field_value"