This commit is contained in:
Santiago Lo Coco 2022-02-06 17:28:02 -03:00
parent 640aedf03f
commit 4acd6ec6b6
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ buildDatabase() {
#cd "$lastFolder" || { echo "Couldn't cd into '$lastFolder'." 1>&2 && exit 1; } #cd "$lastFolder" || { echo "Couldn't cd into '$lastFolder'." 1>&2 && exit 1; }
} }
checkParamaters() { checkParameters() {
dryRunFlag=false dryRunFlag=false
while getopts ':hd' flag; do while getopts ':hd' flag; do
case $flag in case $flag in
@ -41,7 +41,7 @@ checkParamaters() {
} }
runScript() { runScript() {
checkParamaters "$@" checkParameters "$@"
getAnyPackages getAnyPackages
buildDatabase buildDatabase
} }