FIX logic error actually
This commit is contained in:
parent
d9c937cdf4
commit
1077b6dd50
|
@ -97,7 +97,7 @@ clean_up() {
|
||||||
|
|
||||||
trap 'clean_up' ERR
|
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]"
|
echo "Usage: bootstrap_pkgs CUSTOM_PKGBUILD_SRC [INSTALL_ROOT]"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue