Merge pull request #3366 from Kvasscn/kata_dev_fix_kata-collect-data_typo

runtime: fix a typo in kata-collect-data.sh
This commit is contained in:
GabyCT
2022-01-04 17:03:34 -06:00
committed by GitHub

View File

@@ -714,7 +714,7 @@ unmount_partition()
{
local mountpoint="$1"
[ -n "$mountpoint" ] || die "need mountpoint"
[ -n "$mountpoint" ] || die "mountpoint does not exist: $mountpoint"
[ -e "$mountpoint" ] || die "mountpoint does not exist: $mountpoint"
umount "$mountpoint"
}