Remove: Unused `:g` option in install.sh `getopts` (#341)

This commit is contained in:
Pratik Pingale 2022-03-22 22:42:38 +05:30 committed by GitHub
parent f0fea4d049
commit e8f93b9b34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ THEME=DEFAULT
# Get options. # Get options.
while getopts 'f:p:g:t:h' flag; do while getopts 'f:p:t:h' flag; do
case "${flag}" in case "${flag}" in
f) FIREFOXFOLDER="${OPTARG}" ;; f) FIREFOXFOLDER="${OPTARG}" ;;
p) PROFILENAME="${OPTARG}" ;; p) PROFILENAME="${OPTARG}" ;;
@ -104,4 +104,4 @@ else
fi; fi;
done done
fi fi