Merge branch 'chore/fix_missing_flag_checks' into 'main'

Fix myssh not checking for -d and -c flags.

See merge request ujamii_dev/auto-dev-reverse-proxy!4
This commit is contained in:
Kevin Baensch 2023-04-17 08:56:26 +00:00
commit 801e735379

View file

@ -193,7 +193,7 @@ case "${MAIN_OPTION}" in
exit 1
fi
while getopts "u:p:" o
while getopts "u:p:d:c:" o
do
case "$o" in
u) TARGET_HOST_USERNAME="${OPTARG}" ;;