Use -e for file check in other places as well, just to be sure

This commit is contained in:
ValdikSS 2022-12-08 22:14:13 +03:00
parent 4abb52133f
commit 8dd14fc452

View File

@ -140,9 +140,9 @@ function get_dev_partition_num() {
} }
function write_uefintfs() { function write_uefintfs() {
if [ -a "$dirpath/uefi-ntfs.img" ]; then if [ -e "$dirpath/uefi-ntfs.img" ]; then
cat "$dirpath/uefi-ntfs.img" > "$1" cat "$dirpath/uefi-ntfs.img" > "$1"
elif [ -a "/usr/share/windows2usb/uefi-ntfs.img" ]; then elif [ -e "/usr/share/windows2usb/uefi-ntfs.img" ]; then
cat "/usr/share/windows2usb/uefi-ntfs.img" > "$1" cat "/usr/share/windows2usb/uefi-ntfs.img" > "$1"
fi fi
} }