Browse Source

package uploader: fix checking of build.sh existence

emacs-27
Leonid Plyushch 6 years ago
parent
commit
ff20bfb59b
  1. 2
      scripts/package_uploader.sh

2
scripts/package_uploader.sh

@ -522,7 +522,7 @@ process_packages() {
if $PACKAGE_DELETION_MODE; then if $PACKAGE_DELETION_MODE; then
delete_package "$package_name" || continue delete_package "$package_name" || continue
else 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." msg " * ${package_name}: skipping because such package does not exist."
continue continue
fi fi

Loading…
Cancel
Save