diff options
-rwxr-xr-x | misc-scripts/make-sourceball | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/misc-scripts/make-sourceball b/misc-scripts/make-sourceball index d58d48f..e24af2d 100755 --- a/misc-scripts/make-sourceball +++ b/misc-scripts/make-sourceball @@ -74,7 +74,8 @@ create_srcpackage() { echo "Creating source tarball for $pkgname-$pkgver-$pkgrel" if ! chk_license ${license[@]}; then - die "\t$pkgname license (${license[@]}) does not require source tarballs. Doing nothing" + echo -e "\t$pkgname license (${license[@]}) does not require source tarballs" >&2 + cleanup 0 fi local logfile="$logpath/$pkgname" |