diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-04-13 05:39:41 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-04-13 05:39:41 +0000 |
commit | 5fbfeb112d938834fc1340d8268c170957277c5d (patch) | |
tree | db790d158409e03492f412813365046c849ccc37 /scripts | |
parent | f33df2d97488542a1c47eb87ead9594aac8141bd (diff) |
a log handling idea
svn path=/trunk/; revision=4901
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/nightly-build.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/nightly-build.sh b/scripts/nightly-build.sh index 622aa971..72d0801d 100755 --- a/scripts/nightly-build.sh +++ b/scripts/nightly-build.sh @@ -26,4 +26,8 @@ fi make install && make package > $LOGFILE 2>&1 -cat $LOGFILE | mail -s "Pd Autobuild Log on $UNAME - $DATE" $RECIPIENTS +if [ "${UNAME}" == "MINGW32_NT-5.1" ]; then + echo "No mailer for windows yet" +else + cat $LOGFILE | mail -s "Pd Autobuild Log on $UNAME - $DATE" $RECIPIENTS +fi |