From 247e2f639e8d04a930c66a49c05f13d1c920706b Mon Sep 17 00:00:00 2001 From: Xiaonan Shen Date: Tue, 21 Sep 2021 01:47:29 +0800 Subject: [PATCH] Add missing option "r" to getopts --- setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup b/setup index 28e93d6..1160b29 100644 --- a/setup +++ b/setup @@ -33,7 +33,7 @@ print_usage() { echo -e "y: Continue installation without prompts" } -while getopts "B:b:l:P:p:y" flag; do +while getopts "B:b:l:P:p:r:y" flag; do case "${flag}" in B) EFIBOOT="${OPTARG}" ;; b) BOOT="${OPTARG}" ;;