fix tiny error of missing space

This commit is contained in:
johnyma22 2012-11-16 21:12:04 +00:00
parent 0b7d488ea4
commit cefbd8354d
1 changed files with 1 additions and 1 deletions

View File

@ -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]\)\?");