summaryrefslogtreecommitdiffstats
path: root/etherpad
diff options
context:
space:
mode:
authorEgil Moeller <egil.moller@freecode.no>2010-04-05 21:58:18 +0200
committerEgil Moeller <egil.moller@freecode.no>2010-04-05 21:58:18 +0200
commit397d10d630db17ef590b330a489f07971673d565 (patch)
treefe856629bcee908241e3fa607d783d5950d16db4 /etherpad
parent46f96150d3a56bd9cbdbb308995415613e7bf4e4 (diff)
downloadetherpad-397d10d630db17ef590b330a489f07971673d565.tar.gz
etherpad-397d10d630db17ef590b330a489f07971673d565.tar.bz2
etherpad-397d10d630db17ef590b330a489f07971673d565.zip
Revert "Changed the default setup to a production setup, use 'dev' as a parameter if you want a development setup."
This stuff seems broken. Fix and recommit another time? This reverts commit 13bf676f0ce8201de185c83fedda0a16564eb53e.
Diffstat (limited to 'etherpad')
-rwxr-xr-xetherpad/bin/rebuildjar.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/etherpad/bin/rebuildjar.sh b/etherpad/bin/rebuildjar.sh
index acd57d2..d32d994 100755
--- a/etherpad/bin/rebuildjar.sh
+++ b/etherpad/bin/rebuildjar.sh
@@ -117,9 +117,10 @@ trap notify EXIT
source ../infrastructure/bin/compilecache.sh
-if [ "$1" == "dev" ]; then
- suffix="-dev";
- shift
+suffix="-dev";
+if [ "$1" == "prod" ]; then
+ suffix="";
+ shift;
fi
OWD=`pwd`