diff options
author | Dave Collins <davec@conformal.com> | 2011-10-04 09:35:30 -0500 |
---|---|---|
committer | Dave Collins <davec@conformal.com> | 2011-10-04 09:35:30 -0500 |
commit | 02983bd7cb22d4e51828d3e616703685b263bdfc (patch) | |
tree | b7c022d82fb4d84c17e4fe82457b932aaca5d0e3 | |
parent | 68a74b3ee0454313bcc5193135e6190023389664 (diff) | |
download | xombrero-02983bd7cb22d4e51828d3e616703685b263bdfc.tar.gz |
Uncomment modifications test in release script.
-rwxr-xr-x | release.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/release.sh b/release.sh index d089e11..7b70f97 100755 --- a/release.sh +++ b/release.sh @@ -55,8 +55,7 @@ fi NUM_MODIFIED=$(git diff 2>/dev/null | wc -l | sed 's/^[ \t]*//') NUM_STAGED=$(git diff --cached 2>/dev/null | wc -l | sed 's/^[ \t]*//') if [ "$NUM_MODIFIED" != "0" -o "$NUM_STAGED" != "0" ]; then -# report_err "the working directory contains uncommitted modifications" - echo + report_err "the working directory contains uncommitted modifications" fi # get version |