Skip to content

Commit

Permalink
Merge pull request #296 from grml/mika/ventoy
Browse files Browse the repository at this point in the history
interactive mode: ignore failures when identifying file system fails
  • Loading branch information
mika authored Dec 3, 2024
2 parents 1bb816f + 7ef3249 commit 770eaa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grml-debootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ prompt_for_target()
fi

PARTITION_LIST=$(for i in $AVAILABLE_PARTITIONS ; do
fs="$(blkid -s TYPE -o value "$i" 2>/dev/null)"
fs="$(blkid -s TYPE -o value "$i" 2>/dev/null || true)"
[ -n "$fs" ] || fs='[no_filesystem_yet]'
echo "$i" "$fs"
unset fs
Expand Down

0 comments on commit 770eaa3

Please sign in to comment.