diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/oh-unpacksource.sh | 5 | ||||
-rw-r--r-- | src/opkbuild.sh | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/oh-unpacksource.sh b/src/oh-unpacksource.sh index 128d85a..eb48aed 100644 --- a/src/oh-unpacksource.sh +++ b/src/oh-unpacksource.sh @@ -32,6 +32,11 @@ main() { oh_locale_set + if [ "${#}" -ne 0 ]; then + oh_usage + exit 1 + fi + if [ -d ../src ]; then unpack_native else diff --git a/src/opkbuild.sh b/src/opkbuild.sh index 94bc6c7..7fdd33d 100644 --- a/src/opkbuild.sh +++ b/src/opkbuild.sh @@ -77,6 +77,10 @@ main() oh_locale_set get_options + if [ "${#}" -ne 0 ]; then + oh_usage + exit 1 + fi test_uid0_cmd @@ -172,6 +176,7 @@ get_options() ;; esac done + shift $(($OPTIND - 1)) # Set default option values. [ -z "${OPT_BUILD}" ] && OPT_BUILD=full |