diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-09-23 07:57:20 -0700 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-09-23 07:57:20 -0700 |
commit | b6ca5aa8ae15e98a01f3897fa4931319aad94732 (patch) | |
tree | 72de88850440059f91e4c9424128a303f76b4643 | |
parent | 09e556788e79fc86ce0c5ab7a6a26abcddcd0cbd (diff) |
make-sourceballs: clean up output
Only output "Creating sourceball" text when we're actually
creating it
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-rwxr-xr-x | misc-scripts/make-sourceball | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc-scripts/make-sourceball b/misc-scripts/make-sourceball index 3d42f13..75eee07 100755 --- a/misc-scripts/make-sourceball +++ b/misc-scripts/make-sourceball @@ -69,12 +69,12 @@ create_srcpackage() { pushd "$1" >/dev/null . "$BUILDSCRIPT" - echo "Creating source tarball for $packagename-$pkgver-$pkgrel" - if ! chk_license ${license[@]}; then #Removed so as not to clutter failed.txt #echo -e "\t$packagename license (${license[@]}) does not require source tarballs" >&2 cleanup 0 + else + echo "Creating source tarball for $packagename-$pkgver-$pkgrel" fi local logfile="$logpath/$packagename" |