fix: typo: comand -> command

This commit is contained in:
shamilbi 2024-06-02 19:38:45 +02:00
parent 54f13b2250
commit 39dac1d23a

View file

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