Skip to content

Commit

Permalink
Param fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tmachyshyn committed Feb 8, 2024
1 parent cea69c8 commit 9d35642
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function handleArguments() {
local value=$(echo "$ARGUMENT" | cut -f2 -d=)

case "$key" in
-y|--yes)
-y | --yes)
noConfirmation=true
;;

Expand Down Expand Up @@ -112,27 +112,27 @@ function handleArguments() {
data[email]="${value}"
;;

--dbRootPassword)
--db-root-password | --dbRootPassword)
data[dbRootPassword]="${value}"
;;

--dbPassword)
--db-password | --dbPassword)
data[dbPassword]="${value}"
;;

--adminUsername)
--admin-username | --adminUsername)
data[adminUsername]="${value}"
;;

--adminPassword)
--admin-password | --adminPassword)
data[adminPassword]="${value}"
;;

--command)
data[action]="command"
;;

--backup-path)
--backup-path | --backupPath)
data[backupPath]="${value}"
;;

Expand Down

0 comments on commit 9d35642

Please sign in to comment.