2012-08-14 16:59:10 +02:00
|
|
|
#!/bin/bash
|
2011-03-04 17:02:28 +01:00
|
|
|
|
|
|
|
# This script rebuilds customized layer of Dojo for tt-rss
|
|
|
|
# Place unpacked Dojo source release in this directory and run this script.
|
|
|
|
# It will automatically replace previous build of Dojo in ../dojo
|
|
|
|
|
|
|
|
# Dojo requires Java runtime to build. Further information on rebuilding Dojo
|
|
|
|
# is available here: http://dojotoolkit.org/reference-guide/build/index.html
|
|
|
|
|
|
|
|
if [ -d util/buildscripts/ ]; then
|
2012-08-14 16:59:10 +02:00
|
|
|
rm -rf release/dojo
|
|
|
|
|
2011-03-04 17:02:28 +01:00
|
|
|
pushd util/buildscripts
|
2012-08-14 16:59:10 +02:00
|
|
|
./build.sh profile=../../tt-rss action=clean,release optimize=shrinksafe
|
2011-03-04 17:02:28 +01:00
|
|
|
popd
|
|
|
|
|
|
|
|
if [ -d release/dojo ]; then
|
2011-11-08 17:40:44 +01:00
|
|
|
rm -rf ../dojo ../dijit
|
2012-08-14 16:59:10 +02:00
|
|
|
cp -r release/dojo/dojo ..
|
|
|
|
cp -r release/dojo/dijit ..
|
2011-03-04 17:02:28 +01:00
|
|
|
else
|
|
|
|
echo $0: ERROR: Dojo build seems to have failed.
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo $0: ERROR: Please unpack Dojo source release into current directory.
|
|
|
|
fi
|