From 4acd6ec6b6c571199e36716f25a5cd5cc4fe78c9 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sun, 6 Feb 2022 17:28:02 -0300 Subject: [PATCH] Fix typo --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 34ae0ff..36390e7 100755 --- a/build.sh +++ b/build.sh @@ -29,7 +29,7 @@ buildDatabase() { #cd "$lastFolder" || { echo "Couldn't cd into '$lastFolder'." 1>&2 && exit 1; } } -checkParamaters() { +checkParameters() { dryRunFlag=false while getopts ':hd' flag; do case $flag in @@ -41,7 +41,7 @@ checkParamaters() { } runScript() { - checkParamaters "$@" + checkParameters "$@" getAnyPackages buildDatabase }