Compare commits

..

1 commit

Author SHA1 Message Date
ZoopaMario b5f78208c4 Refactor code to make linter runs succeed
Some checks failed
Lint Bash Scripts / lint-bash (push) Failing after 26s
Check Commit Messages / check-commit-message (pull_request) Successful in 15s
Lint Bash Scripts / lint-bash (pull_request) Failing after 26s
This commit refactors the codebase in order to make the shellcheck
workflow pass.
2024-12-29 19:29:15 +01:00

View file

@ -22,7 +22,7 @@ while getopts ":f:h:u:p:m:b:" opt; do
f) SOURCE_DIR="$OPTARG";;
h) SSH_DESTINATION="$OPTARG";;
u) SSH_USERNAME="$OPTARG";;
p) SSH_KEY="$OPTARG";;
p) SSH_PASSWORD="$OPTARG";;
m) MAX_BACKUPS="$OPTARG";;
b) BACKUP_FOLDER="$OPTARG";;
\?) echo "Invalid option: -$OPTARG"; exit 1;;