diff options
author | Justin Davis <jrcd83@gmail.com> | 2012-06-15 02:09:18 +0200 |
---|---|---|
committer | Justin Davis <jrcd83@gmail.com> | 2012-06-15 02:09:18 +0200 |
commit | 3e761dc5ad3699c24c182400a76ed3d532e1e7d5 (patch) | |
tree | 878cfba8f0f15dfb85f78faee84e0b3dbde9f506 | |
parent | 12d8b95b387d64ddc51102f7704ae000b225dd4c (diff) | |
download | genpkg-3e761dc5ad3699c24c182400a76ed3d532e1e7d5.tar.gz genpkg-3e761dc5ad3699c24c182400a76ed3d532e1e7d5.tar.xz |
Comment was in the wrong spot.
-rwxr-xr-x | bin/genpkg | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -100,8 +100,6 @@ do [ -d PKGTREE ] && rm -rf PKGTREE mkdir PKGTREE - # Duplicate the version in case modpkg modifies it. vervar will remove a - # redundant ver field that is the same as pkgver. trap 'rm -f PKGDATA' 1 2 15 PREPSPATH="$prepd" PKGVAR="$vard" prepkg "$pkg" > PKGDATA ret=$? @@ -116,6 +114,8 @@ do if [ -f "$mod" -a -r "$mod" ] then trap 'rm -f PKGDATA.new' 1 2 15 + + # Duplicate the version in case modpkg modifies it. if cat PKGDATA | dupver | modpkg "$mod" > PKGDATA.new then echo "Modified with $mod." 1>&2 @@ -124,6 +124,7 @@ do echo "$prog: modpkg failed." 1>&2 [ "$GENPKGDBG" ] || rm PKGDATA.new fi + trap '' 1 2 15 fi |