diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-08-25 13:13:25 -0700 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-08-25 13:13:25 -0700 |
commit | bd2345c24dd8d3c731fc4d840ddd2bedc5cb68e1 (patch) | |
tree | 2c28eee9e82105c026534494460da738ad24671b | |
parent | 208cf5f55addd91ea6884657737cc62ee81fe0fb (diff) |
Quiet sourceball output when license is skipped
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-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 f93ab2a..9f565f7 100755 --- a/misc-scripts/make-sourceball +++ b/misc-scripts/make-sourceball @@ -71,7 +71,8 @@ create_srcpackage() { echo "Creating source tarball for $pkgname-$pkgver-$pkgrel" if ! chk_license ${license[@]}; then - echo -e "\t$pkgname license (${license[@]}) does not require source tarballs" >&2 + #Removed so as not to clutter failed.txt + #echo -e "\t$pkgname license (${license[@]}) does not require source tarballs" >&2 cleanup 0 fi |