diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-02-14 15:06:06 -0800 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-02-14 15:06:06 -0800 |
commit | 23578ce0f2d5ceedcdca58c58b390d090572cb4c (patch) | |
tree | af63761d060aef2c759ff24adaabfb63637bec7f /misc-scripts/make-sourceball | |
parent | 17899d277a6f5219a6b0534d38c884b264d5ad89 (diff) |
make-sourceball: move popd call before return
This ensures the 'cp' succeeds
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 4b6bb5c..4308c0e 100755 --- a/misc-scripts/make-sourceball +++ b/misc-scripts/make-sourceball @@ -82,7 +82,6 @@ create_srcpackage() { /bin/gzip -9 "$logpath/$pkgname" die "\tFailed to download source for $pkgname-$pkgver-$pkgrel ($reponame-$_arch)" fi - popd >/dev/null /bin/rm "$logpath/$pkgname" local pkg_file="${pkgname}-${pkgver}-${pkgrel}${SRCEXT}" @@ -92,6 +91,8 @@ create_srcpackage() { fi cp "$pkgname/$pkg_file" "$srcpath" + popd >/dev/null + return 0 fi } |