silverstripe-framework/thirdparty/jquery-entwine/build.sh
Ingo Schommer 8256228e69 MINOR Upgraded jQuery.entwine (formerly known as jQuery.concrete) to the latest trunk
MINOR Updated jQuery.concrete references to point to the new "entwine" name

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@102695 467b73ca-7a2a-4603-9d3b-597d59a354a9
2010-04-13 05:45:29 +00:00

43 lines
971 B
Bash
Executable File

#!/bin/sh
# Specify the output file's name
FILE="dist/jquery.entwine-dist.js"
mkdir -p dist
rm dist/*.js
echo "/* jQuery.Entwine - Copyright 2009 Hamish Friedlander and SilverStripe. Version $VER. */" > $FILE
for x in \
vendor/jquery.selector/jquery.class.js \
vendor/jquery.selector/jquery.selector.js \
vendor/jquery.selector/jquery.selector.specifity.js \
vendor/jquery.selector/jquery.selector.matches.js \
src/jquery.focusinout.js \
src/jquery.entwine.js \
src/jquery.entwine.dommaybechanged.js \
src/jquery.entwine.events.js \
src/jquery.entwine.ctors.js \
src/jquery.entwine.properties.js \
src/jquery.entwine.legacy.js
do \
echo >> $FILE
echo "/* $x */" >> $FILE
echo >> $FILE
cat $x >> $FILE
echo ';' >> $FILE
echo >> $FILE
done
# cp LICENSE /tmp/
# cp $FILE /tmp/
# git checkout dist
# mv /tmp/$FILE .
# mv /tmp/LICENSE .
# git add $FILE
# git add LICENSE
# git commit -m "Update dist to master version $VER"
# git checkout master