diff options
author | johnyma22 <john@mclear.co.uk> | 2012-11-16 21:12:04 +0000 |
---|---|---|
committer | johnyma22 <john@mclear.co.uk> | 2012-11-16 21:12:04 +0000 |
commit | cefbd8354d4f2511674a573f76e404e5794a3b8a (patch) | |
tree | f1aab80b0fbec5d969eb15c08c953e146ff10d05 /bin | |
parent | 0b7d488ea49f1fca8bed99b5dedcd54521f07b0e (diff) | |
download | etherpad-lite-cefbd8354d4f2511674a573f76e404e5794a3b8a.zip |
fix tiny error of missing space
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/installDeps.sh | 2 |
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]\)\?"); |