diff options
author | midipix <writeonce@midipix.org> | 2016-05-01 20:23:56 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-05-01 20:23:56 -0400 |
commit | 5eeff9aeb428ad2546dcd89bd12197379b0fc367 (patch) | |
tree | 01c9071f6c5392cbc355e13b21e083396e8310a9 /contrib.sh | |
parent | d3ca02167a2789bbb53b676ce5ccdb7c1cc72e66 (diff) | |
download | slibtool-5eeff9aeb428ad2546dcd89bd12197379b0fc367.tar.bz2 slibtool-5eeff9aeb428ad2546dcd89bd12197379b0fc367.tar.xz |
project: contrib.sh: fix copying of the patch header into the signature file.
Diffstat (limited to 'contrib.sh')
-rwxr-xr-x | contrib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ fname=`sha256sum contrib.patch | cut -f1 -d' '` || exit 2 # prepare for submission, sign the patch mv contrib.patch $fname.patch || exit 2 -head -n$bline $fname.patch | tail -n +2 > $fname.sig || exit 2 +head -n$bline $fname.patch > $fname.sig || exit 2 [ -z "$PAGER" ] && PAGER='less' $PAGER $fname.patch || exit 2 |