2016-06-03 07:47:21 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# This script can be used to update all submodules and re-generated the automatically constructed documentation pages
|
|
|
|
|
2016-09-25 05:45:27 +00:00
|
|
|
git pull
|
|
|
|
|
2016-06-03 07:47:21 +00:00
|
|
|
cd _repos/smarthome
|
|
|
|
git checkout master
|
|
|
|
git pull
|
|
|
|
|
|
|
|
cd ../openhab
|
|
|
|
git checkout master
|
|
|
|
git pull
|
|
|
|
|
|
|
|
cd ../openhab2-addons
|
|
|
|
git checkout master
|
|
|
|
git pull
|
|
|
|
|
2016-09-25 05:45:27 +00:00
|
|
|
cd ../openhab-bundles
|
|
|
|
git checkout master
|
|
|
|
git pull
|
|
|
|
git submodule update --recursive --remote
|
|
|
|
|
2017-03-02 00:08:44 +00:00
|
|
|
cd ../openhab-distro
|
|
|
|
git checkout master
|
|
|
|
git pull
|
|
|
|
|
2016-06-03 07:47:21 +00:00
|
|
|
cd ../..
|
|
|
|
mvn clean package
|