diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-03-08 10:21:56 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-06-17 13:21:27 +0200 |
commit | 02deae446f48e5dd007176237b79d2cfa9b72bf1 (patch) | |
tree | 68cfd79cf3045254d0c26311943d2780f47975b3 /install | |
parent | e86ed0548c27d01ce0b4163c0486487d7e7bd42d (diff) | |
download | Ishtar-02deae446f48e5dd007176237b79d2cfa9b72bf1.tar.bz2 Ishtar-02deae446f48e5dd007176237b79d2cfa9b72bf1.zip |
Fix install script typo
Diffstat (limited to 'install')
-rwxr-xr-x | install/ishtar-install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install/ishtar-install b/install/ishtar-install index 40cfd2d3e..fe14f6adb 100755 --- a/install/ishtar-install +++ b/install/ishtar-install @@ -371,7 +371,7 @@ EOF echo ""; ( set -x; $sh_c 'sleep 3; apt-get install -y -q apg' ) fi - if ! command_exists pip; then + if ! command_exists pip3; then echo "-------------------------------------------------------------------------------"; cecho y "Installing pip..."; echo ""; @@ -465,7 +465,7 @@ EOF echo "-------------------------------------------------------------------------------"; cecho y "Installing django-simple-history" echo ""; - ( set -x; $sh_c 'pip3 install git+https://github .com/treyhunner/django-simple-history.git@1.8.2#egg=django-simple-history' ) + ( set -x; $sh_c 'pip3 install git+https://github.com/treyhunner/django-simple-history.git@1.8.2#egg=django-simple-history' ) echo "-------------------------------------------------------------------------------"; cecho y "Installing python3-secretary" echo ""; |