summaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorCyril Brulebois <cyril@debamax.com>2016-04-03 05:17:17 +0200
committerCyril Brulebois <cyril@debamax.com>2016-04-03 05:32:09 +0200
commitd459f5eb9232bd3da3e779ac32bf5065b9680212 (patch)
treeca60c0d383e6aab2512349d305051452b2864056 /install
parent4b31658af643d1884c0d464959243174d27b6f1f (diff)
downloadIshtar-d459f5eb9232bd3da3e779ac32bf5065b9680212.tar.bz2
Ishtar-d459f5eb9232bd3da3e779ac32bf5065b9680212.zip
Fix syntax error in sed command.
Diffstat (limited to 'install')
-rwxr-xr-xinstall/install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/install/install.sh b/install/install.sh
index e90dc902a..7358ee747 100755
--- a/install/install.sh
+++ b/install/install.sh
@@ -241,7 +241,7 @@ sed -s "s|#APP_NAME#|$APP_NAME|g;\
s|#UWSGI_PORT#|$UWSGI_PORT|g;" $CDIR'/uwsgi.ini.template' > \
$INSTALL_PATH'/conf/uwsgi.ini'
-sed -s "s#APP_NAME#/$APP_NAME/g;" $CDIR'/django.wsgi.template' > \
+sed -s "s/#APP_NAME#/$APP_NAME/g;" $CDIR'/django.wsgi.template' > \
$INSTALL_PATH'/conf/'$APP_NAME'.wsgi'
ln -s $INSTALL_PATH'/conf/uwsgi.ini' \