diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-06-15 17:18:09 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-06-17 13:22:54 +0200 |
commit | b53c8846e508b31a02a2ec306873fefd1b7f9c4e (patch) | |
tree | 3350245c9758e4311d3a20e169aecced53eb12a2 /install | |
parent | 73d586bd26987aeecec87d2c8a8cc07b935f00d0 (diff) | |
download | Ishtar-b53c8846e508b31a02a2ec306873fefd1b7f9c4e.tar.bz2 Ishtar-b53c8846e508b31a02a2ec306873fefd1b7f9c4e.zip |
Install scripts: fix string escape for bash
Diffstat (limited to 'install')
-rwxr-xr-x | install/ishtar-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/ishtar-install b/install/ishtar-install index 3193ffb79..fd1934db5 100755 --- a/install/ishtar-install +++ b/install/ishtar-install @@ -443,7 +443,7 @@ EOF cecho y "Installing postgresql" echo "" POSTGIS=postgresql-9.6-postgis-2.3 - ( set -x; $sh_c 'sleep 3; apt-get install -y -q postgresql $POSTGIS $POSTGIS-scripts postgresql-contrib-9.6' ) + ( set -x; $sh_c 'sleep 3; apt-get install -y -q postgresql '$POSTGIS' '$POSTGIS'-scripts postgresql-contrib-9.6' ) fi echo "-------------------------------------------------------------------------------"; cecho y "Installing Ishtar dependencies" |