summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2015-04-28 23:14:18 +0300
committerAlon Levy <alon@pobox.com>2015-04-28 23:14:18 +0300
commitbbf0998f5f91aac6e34871c97fea8a940e09b4a5 (patch)
tree7eb5fd0609a0b6ae9e10e67fa5a921bb078e8539
parentdb11ef4e7db4230fc36aa63e87cb5706483aeede (diff)
run-local.sh: return cd deploy-local, useful for relative user_db.db
-rwxr-xr-xrun-local.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/run-local.sh b/run-local.sh
index aa9f3009..00e1fd73 100755
--- a/run-local.sh
+++ b/run-local.sh
@@ -19,5 +19,6 @@ if [ ! -f $CONFIG ]; then
fi
make # building css relies on Makefile
ant -f build.ant deploy-local -DdefaultDomain=$DOMAIN -DtargetDomain=$DOMAIN && (
- python2.7 deploy-local/bin/rz_server.py --config-dir deploy-local/etc
+ cd deploy-local
+ python2.7 bin/rz_server.py --config-dir etc
)