diff options
-rwxr-xr-x | misc-scripts/make-sourceball | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc-scripts/make-sourceball b/misc-scripts/make-sourceball index 51f28c1..4b6bb5c 100755 --- a/misc-scripts/make-sourceball +++ b/misc-scripts/make-sourceball @@ -3,7 +3,7 @@ # Allowed licenses: build only for licenses in this array ALLOWED_LICENSES=('GPL' 'GPL1' 'GPL2' 'LGPL' 'LGPL1' 'LGPL2') -if [ $# -ne 3 ]; then +if [ $# -ne 3 -a $# -ne 4 ]; then echo "usage: $(basename $0) [-f] <packagename> <repo> <arch>" echo " -f Force building. Skip license checks" exit 1 |