buildRelease.sh 397 Bytes
Newer Older
1
#!/bin/sh
2
echo $(date "+%H:%M:%S") Start
3
cd ../..
4
rm -rf ../h2web
5 6
mkdir ../h2web

7 8
rm -rf bin
rm -rf temp
9

10 11
./build.sh -quiet compile
./build.sh -quiet spellcheck javadocImpl jarClient
Thomas Mueller's avatar
Thomas Mueller committed
12
./build.sh -quiet clean compile installer mavenDeployCentral
13

14
# ./build.sh -quiet compile benchmark
15 16
# == Copy the benchmark results 
# == and update the performance page and diagram
17 18

echo $(date "+%H:%M:%S") Done