From 1077b6dd50597933929538fd715db21cd1773fbb Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Sat, 12 Jun 2021 01:01:40 -0400 Subject: [PATCH] FIX logic error actually --- dot_bin/executable_bootstrap_pkgs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot_bin/executable_bootstrap_pkgs b/dot_bin/executable_bootstrap_pkgs index 8bebd1b..1919301 100644 --- a/dot_bin/executable_bootstrap_pkgs +++ b/dot_bin/executable_bootstrap_pkgs @@ -97,7 +97,7 @@ clean_up() { trap 'clean_up' ERR -if [ "$#" -ge 1 ] && [ "$#" -le 2 ]; then +if [ "$#" -lt 1 ] || [ "$#" -gt 2 ]; then echo "Usage: bootstrap_pkgs CUSTOM_PKGBUILD_SRC [INSTALL_ROOT]" exit 1 fi