aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2006-10-03 13:48:05 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2006-10-03 13:48:05 +0000
commitbb4a4632906ebe2b214e9b3f8a030fb45dfa05f7 (patch)
treefd8c1bcf15caa827c12a750abf90b23166b3dc01
parent50718bbb20fc634415d3ac6256fea29812efff6e (diff)
deleted cruft
svn path=/trunk/; revision=6067
-rwxr-xr-xscripts/nightly-build.sh33
1 files changed, 0 insertions, 33 deletions
diff --git a/scripts/nightly-build.sh b/scripts/nightly-build.sh
deleted file mode 100755
index 72d0801d..00000000
--- a/scripts/nightly-build.sh
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/sh
-
-cvs_root_dir=`echo $0 | sed 's|\(.*\)/.*$|\1|'`/..
-UNAME=`uname -s`
-RECIPIENTS="hans@eds.org"
-DATE=`date +%Y-%m-%d_%H.%M.%S`
-LOGFILE="/tmp/pd-autobuild-${DATE}.txt"
-
-cd $cvs_root_dir
-scripts/update-developer-layout.sh
-
-# Apple Mac OS X
-if [ "${UNAME}" == "Darwin" ]; then
-cd packages/darwin_app
-fi
-
-# GNU/Linux
-if [ "${UNAME}" == "Darwin" ]; then
-cd packages/linux_make
-fi
-
-# MinGW for MS Windows
-if [ "${UNAME}" == "MINGW32_NT-5.1" ]; then
-cd packages/win32_inno
-fi
-
-make install && make package > $LOGFILE 2>&1
-
-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