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 | 73089149350e2ae7f5d5b4901d9fb914722bfac1 (patch) | |
tree | 68cfd79cf3045254d0c26311943d2780f47975b3 /install | |
parent | 68a064fde171c99066e3a3470a98ca3ed39bce5a (diff) | |
download | Ishtar-73089149350e2ae7f5d5b4901d9fb914722bfac1.tar.bz2 Ishtar-73089149350e2ae7f5d5b4901d9fb914722bfac1.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 ""; |