-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathbuild.sh
executable file
·49 lines (40 loc) · 1.17 KB
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/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-2011 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.selector.affectedby.js \
src/jquery.focusinout.js \
src/jquery.entwine.js \
src/domevents/jquery.entwine.domevents.addrem.js \
src/domevents/jquery.entwine.domevents.maybechanged.js \
src/jquery.entwine.events.js \
src/jquery.entwine.eventcapture.js \
src/jquery.entwine.ctors.js \
src/jquery.entwine.addrem.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 $FILE "dist/jquery.concrete-dist.js"
# 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