From f9f5d5bdc3de328f0bb89854a4f1c85ab2988bfb Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Thu, 02 Aug 2012 23:39:13 -0400 Subject: Detect absence of binary package directories. Or detect presence of clever user. --- (limited to 'src/opkbuild.sh') diff --git a/src/opkbuild.sh b/src/opkbuild.sh index 56a359b..832b43c 100644 --- a/src/opkbuild.sh +++ b/src/opkbuild.sh @@ -410,6 +410,13 @@ step_bincontrol() for pkg in ../*.pkg/; do pkg="${pkg#../}" pkg="${pkg%.pkg/}" + if [ "${pkg}" = '*' ]; then + if [ -d '../*.pkg' ]; then + oh_error "${oh_str_asterisk_binary_package}" + else + oh_error "${oh_str_no_binary_packages}" + fi + fi oh_control_parse_binary "${pkg}" for field in ${OH_CONTROL_BINARY_FIELDS_REQUIRED} \ ${OH_CONTROL_BINARY_FIELDS_OPTIONAL}; do -- cgit v0.9.1