diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-02-26 20:49:26 +0100 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-02-26 20:49:26 +0100 |
commit | 891e4f353d098a639c3b1d09d45987f0908b0d38 (patch) | |
tree | 5a890bf28f7d0704a9d630f3b1031fef506e7194 /misc-scripts/make-sourceball | |
parent | 2de2859cc0fd7f9db26630dffec25fccb88f3434 (diff) | |
download | dbscripts-891e4f353d098a639c3b1d09d45987f0908b0d38.tar.gz dbscripts-891e4f353d098a639c3b1d09d45987f0908b0d38.tar.xz |
make-sourceball: license skip is NOT a failure
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'misc-scripts/make-sourceball')
-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" |