fix: typo: comand -> command

This commit is contained in:
shamilbi 2024-06-02 19:38:45 +02:00
parent 54f13b2250
commit 39dac1d23a
1 changed files with 2 additions and 2 deletions

View File

@ -70,9 +70,9 @@ mkexfatfs_() {
mkexfatfs -n "$label" -s "$sectors" "$@" mkexfatfs -n "$label" -s "$sectors" "$@"
} }
mkexfatfs= mkexfatfs=
if [ ! -z "$(comand -v mkfs.exfat)" ]; then if [ ! -z "$(command -v mkfs.exfat)" ]; then
mkexfatfs=mkfs_exfat_ mkexfatfs=mkfs_exfat_
elif [ ! -z "$(comand -v mkexfatfs)" ]; then elif [ ! -z "$(command -v mkexfatfs)" ]; then
mkexfatfs=mkexfatfs_ mkexfatfs=mkexfatfs_
fi fi