aboutsummaryrefslogtreecommitdiffstats
path: root/update_demos_svn.sh
blob: f8f9afdd1161325a1fb762f752b0e1fe5a1b909e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh

# Script to update demos deployed in svn

V=1.0.0-SNAPSHOT

cp -r samples/target/gwtquery-samples-$V/gwtquery* demos/
cp -r samples/target/gwtquery-samples-$V/index.html demos/

for i in `find demos -type d | grep -v .svn | sed -e 's#^demos/##g'`
do
   [ ! -d samples/target/gwtquery-samples-$V/$i ] && svn delete demos/$i 
done

for i in `find demos -type f | grep -v .svn | sed -e 's#^demos/##g'`
do
   [ ! -f samples/target/gwtquery-samples-$V/$i ] && svn delete demos/$i 
done

find demos  | grep -v .svn | xargs svn add

find demos -type f -name "*html" -exec svn propset svn:mime-type text/html '{}' ';'
find demos -type f -name "*js" -exec svn propset svn:mime-type text/javascript '{}' ';'