mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
ec9589fb3b
Summary: Otherwise attaching the commit diff doesn't work. Test Plan: Reparsed previously failing commit message. Reviewers: epriestley Reviewed By: epriestley CC: aran, Koolvin Differential Revision: https://secure.phabricator.com/D2605
6 lines
57 B
Bash
Executable file
6 lines
57 B
Bash
Executable file
#!/bin/sh
|
|
|
|
diff "$@"
|
|
if [ "$?" = "2" ]; then
|
|
exit 1
|
|
fi
|