From e8f93b9b3456c13356f17aae7c8abb99195d12ec Mon Sep 17 00:00:00 2001 From: Pratik Pingale Date: Tue, 22 Mar 2022 22:42:38 +0530 Subject: [PATCH] Remove: Unused `:g` option in install.sh `getopts` (#341) --- scripts/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index e43f74c..8cd4421 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -7,7 +7,7 @@ THEME=DEFAULT # Get options. -while getopts 'f:p:g:t:h' flag; do +while getopts 'f:p:t:h' flag; do case "${flag}" in f) FIREFOXFOLDER="${OPTARG}" ;; p) PROFILENAME="${OPTARG}" ;; @@ -104,4 +104,4 @@ else fi; done -fi \ No newline at end of file +fi