aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-12-22 16:43:26 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-12-22 16:43:26 +0100
commitff5dd0dfb0838131e22493d62961f481fd144897 (patch)
tree29d45fd0288dbd0a784965fe722ce3205e2f9932
parentUpdated bootstrap script for Vagrant. (diff)
downloadnewspipe-ff5dd0dfb0838131e22493d62961f481fd144897.tar.gz
newspipe-ff5dd0dfb0838131e22493d62961f481fd144897.tar.bz2
newspipe-ff5dd0dfb0838131e22493d62961f481fd144897.zip
Updated install script.
-rwxr-xr-xinstall.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/install.sh b/install.sh
index 028dd8db..5eb0ec13 100755
--- a/install.sh
+++ b/install.sh
@@ -40,5 +40,5 @@ elif [ "$1" == sqlite ]; then
echo 'database_url = sqlite+pysqlite:///jarr.db' >> src/conf/conf.cfg
fi
-python$PYTHON_VERSION manager.py db_empty
-python$PYTHON_VERSION manager.py db_create
+python$PYTHON_VERSION src/manager.py db_empty
+python$PYTHON_VERSION src/manager.py db_create
bgstack15