diff options
author | des <des@FreeBSD.org> | 2002-03-14 00:36:54 +0800 |
---|---|---|
committer | des <des@FreeBSD.org> | 2002-03-14 00:36:54 +0800 |
commit | fe8db81cc554155bdef70ff24adb2d8ec94ad918 (patch) | |
tree | f5d53101c6c9973b94385d666fc35bee2b0f7246 /databases/gnats | |
parent | 5ea184a1045f8ba60a9dac34158eb0d7003f5097 (diff) | |
download | freebsd-ports-gnome-fe8db81cc554155bdef70ff24adb2d8ec94ad918.tar.gz freebsd-ports-gnome-fe8db81cc554155bdef70ff24adb2d8ec94ad918.tar.zst freebsd-ports-gnome-fe8db81cc554155bdef70ff24adb2d8ec94ad918.zip |
Do not ignore return code from 'pr-edit --lock'.
Diffstat (limited to 'databases/gnats')
-rw-r--r-- | databases/gnats/files/patch-ad | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/databases/gnats/files/patch-ad b/databases/gnats/files/patch-ad new file mode 100644 index 000000000000..5cfe9847b8dc --- /dev/null +++ b/databases/gnats/files/patch-ad @@ -0,0 +1,20 @@ +--- gnats/gnats-edit-pr.sh.orig Wed Mar 13 17:19:09 2002 ++++ gnats/gnats-edit-pr.sh Wed Mar 13 17:21:14 2002 +@@ -178,13 +178,11 @@ + + # lock the pr + $debug_print "Locking $pr_id." +-lock=`$PR_EDIT --lock=$full_me $pr_id 2>&1 > $new` +-locked=t +- +-if [ "$lock" != "" ] ; then +- echo $lock +- exit 0 ++if ! $PR_EDIT --lock=$full_me $pr_id >$new ; then ++ echo "Failed to lock PR $pr_id" ++ exit 1 + fi ++locked=t + + # here's where we actually call the editor. + cp $new $new.old |