Vim: Fix wrong getopts in bash template

This commit is contained in:
Salt 2020-03-27 08:24:17 -05:00
parent b4659528bf
commit 69a34464e1
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ main() {
# Parse out arguments
while [ -n "$1" ]; do
# Parse out flags
while getopts ":chv" opt; do
while getopts ":c:hv" opt; do
case $opt in
c)
_optconfigfile="$OPTARG"