summaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
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
commit8dd012dfeb088ba3478376c40d359f682c08d5c9 (patch)
tree3350245c9758e4311d3a20e169aecced53eb12a2 /install
parentc8c3e1db04203d7bb318729256ec5c752722aa14 (diff)
downloadIshtar-8dd012dfeb088ba3478376c40d359f682c08d5c9.tar.bz2
Ishtar-8dd012dfeb088ba3478376c40d359f682c08d5c9.zip
Install scripts: fix string escape for bash
Diffstat (limited to 'install')
-rwxr-xr-xinstall/ishtar-install2
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"