From 39dac1d23a3519ff1d444598aa49b53ef68f29c6 Mon Sep 17 00:00:00 2001 From: shamilbi Date: Sun, 2 Jun 2024 19:38:45 +0200 Subject: [PATCH] fix: typo: comand -> command --- INSTALL/tool/ventoy_lib.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL/tool/ventoy_lib.sh b/INSTALL/tool/ventoy_lib.sh index 5f5aadb3..60c384c3 100644 --- a/INSTALL/tool/ventoy_lib.sh +++ b/INSTALL/tool/ventoy_lib.sh @@ -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