diff options
author | Egil Moeller <egil.moller@freecode.no> | 2012-04-01 22:55:04 +0200 |
---|---|---|
committer | Egil Moeller <egil.moller@freecode.no> | 2012-04-01 22:55:04 +0200 |
commit | 434252a321ff06361426e745940482df04f13d66 (patch) | |
tree | 389da54e74c01e819848b6e6e2d2cf3e346c2848 /bin | |
parent | ba00144bcd0e0cb16bccc7d59a3ed6ec033e9d82 (diff) | |
download | etherpad-lite-434252a321ff06361426e745940482df04f13d66.zip |
Removed prefixfree as it breaks @import in css files
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/installDeps.sh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/bin/installDeps.sh b/bin/installDeps.sh index e2a43c53..2acebd82 100755 --- a/bin/installDeps.sh +++ b/bin/installDeps.sh @@ -81,21 +81,6 @@ if [ $DOWNLOAD_JQUERY = "true" ]; then curl -lo src/static/js/jquery.js http://code.jquery.com/jquery-$NEEDED_VERSION.js || exit 1 fi -echo "Ensure prefixfree is downloaded and up to date..." -DOWNLOAD_PREFIXFREE="true" -NEEDED_VERSION="1.0.4" -if [ -f "src/static/js/prefixfree.js" ]; then - VERSION=$(cat src/static/js/prefixfree.js | grep "PrefixFree" | grep -o "[0-9].[0-9].[0-9]"); - - if [ $VERSION = $NEEDED_VERSION ]; then - DOWNLOAD_PREFIXFREE="false" - fi -fi - -if [ $DOWNLOAD_PREFIXFREE = "true" ]; then - curl -lo src/static/js/prefixfree.js -k https://raw.github.com/LeaVerou/prefixfree/master/prefixfree.js || exit 1 -fi - #Remove all minified data to force node creating it new echo "Clear minfified cache..." rm -f var/minified* |