package uploader: fix checking of build.sh existence

This commit is contained in:
Leonid Pliushch 2019-03-25 14:25:08 +02:00
parent 214799a285
commit 4fbf09ac78
1 changed files with 1 additions and 1 deletions

View File

@ -522,7 +522,7 @@ process_packages() {
if $PACKAGE_DELETION_MODE; then
delete_package "$package_name" || continue
else
if [ ! -f "$TERMUX_PACKAGES_BASEDIR/packages/$1/build.sh" ]; then
if [ ! -f "$TERMUX_PACKAGES_BASEDIR/packages/$package_name/build.sh" ]; then
msg " * ${package_name}: skipping because such package does not exist."
continue
fi