Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b6fd5a5

Browse files
committed
Add "set -e" to lock command.
1 parent 8731e5c commit b6fd5a5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Tools/faqwiz/faqwiz.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,7 @@ def commit(self, entry):
806806
f.close()
807807

808808
command = interpolate(
809-
SH_LOCK + '\n' + SH_CHECKIN,
809+
"set -e\n" + SH_LOCK + '\n' + SH_CHECKIN,
810810
file=file, tfn=tfn)
811811

812812
p = os.popen(command)

0 commit comments

Comments
 (0)