diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-10-11 08:28:07 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-10-11 08:28:07 +0200 |
commit | 39e95258afa8721ea671459bde5d1b732948a388 (patch) | |
tree | a6a90b4d579d94baf7ba14bece2def359bf69cad /install.sh | |
parent | clean (diff) | |
download | newspipe-39e95258afa8721ea671459bde5d1b732948a388.tar.gz newspipe-39e95258afa8721ea671459bde5d1b732948a388.tar.bz2 newspipe-39e95258afa8721ea671459bde5d1b732948a388.zip |
Updated install.sh
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ #! /usr/bin/env bash # -# This script install all dependencies and configure JARR. +# This script install all dependencies and configure Newspipe. # Usage: # ./install.sh (sqlite|postgres) # @@ -67,7 +67,7 @@ elif [ "$1" == sqlite ]; then echo "Configuring the SQLite database..." echo '[database]' >> src/conf/conf.cfg - echo 'database_url = sqlite:///jarr.db' >> src/conf/conf.cfg + echo 'database_url = sqlite:///newspipe.db' >> src/conf/conf.cfg fi @@ -83,5 +83,5 @@ git submodule update > /dev/null echo "Installation terminated." -echo "Launch JARR with the command:" +echo "Launch Newspipe with the command:" echo -e "\tpython$PYTHON_VERSION src/runserver.py" |