aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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