summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorjohnyma22 <john@mclear.co.uk>2012-11-16 21:12:04 +0000
committerjohnyma22 <john@mclear.co.uk>2012-11-16 21:12:04 +0000
commitcefbd8354d4f2511674a573f76e404e5794a3b8a (patch)
treef1aab80b0fbec5d969eb15c08c953e146ff10d05 /bin
parent0b7d488ea49f1fca8bed99b5dedcd54521f07b0e (diff)
downloadetherpad-lite-cefbd8354d4f2511674a573f76e404e5794a3b8a.zip
fix tiny error of missing space
Diffstat (limited to 'bin')
-rwxr-xr-xbin/installDeps.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/installDeps.sh b/bin/installDeps.sh
index ac2e68cf..ae4860b3 100755
--- a/bin/installDeps.sh
+++ b/bin/installDeps.sh
@@ -79,7 +79,7 @@ echo "Ensure jQuery is downloaded and up to date..."
DOWNLOAD_JQUERY="true"
NEEDED_VERSION="1.7.1"
if [ -f "src/static/js/jquery.js" ]; then
- if [ $(uname) = "SunOS"]; then
+ if [ $(uname) = "SunOS" ]; then
VERSION=$(cat src/static/js/jquery.js | head -n 3 | ggrep -o "v[0-9]\.[0-9]\(\.[0-9]\)\?");
else
VERSION=$(cat src/static/js/jquery.js | head -n 3 | grep -o "v[0-9]\.[0-9]\(\.[0-9]\)\?");