diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-02-21 22:48:21 +0100 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-02-21 22:48:21 +0100 |
commit | d63b83d26694c531d900e29932e2f38a1aa12690 (patch) | |
tree | 9bc060b954164a9c048e1d2db76dbc04e7657383 /misc-scripts/make-sourceball | |
parent | db00ce3c343cf6eea9cb512f7bba9ea7904526b8 (diff) | |
download | dbscripts-d63b83d26694c531d900e29932e2f38a1aa12690.tar.gz dbscripts-d63b83d26694c531d900e29932e2f38a1aa12690.tar.xz |
make-sourceball: Fix license error output
Remove the goofy -e and add the pkgname
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'misc-scripts/make-sourceball')
-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 328bafd..85756de 100755 --- a/misc-scripts/make-sourceball +++ b/misc-scripts/make-sourceball @@ -74,7 +74,7 @@ create_srcpackage() { echo "Creating source tarball for $pkgname-$pkgver-$pkgrel" if ! chk_license ${license[@]}; then - die -e "\tPackage license (${license[@]}) does not require source tarballs. Doing nothing" + die "\t$pkgname license (${license[@]}) does not require source tarballs. Doing nothing" fi local logfile="$logpath/$pkgname" |