29 lines
457 B
Bash
Executable File
29 lines
457 B
Bash
Executable File
#!/bin/sh
|
|
# This script can be used to update all submodules and re-generated the automatically constructed documentation pages
|
|
|
|
git pull
|
|
|
|
cd _repos/smarthome
|
|
git checkout master
|
|
git pull
|
|
|
|
cd ../openhab
|
|
git checkout master
|
|
git pull
|
|
|
|
cd ../openhab2-addons
|
|
git checkout master
|
|
git pull
|
|
|
|
cd ../openhab-bundles
|
|
git checkout master
|
|
git pull
|
|
git submodule update --recursive --remote
|
|
|
|
cd ../openhab-distro
|
|
git checkout master
|
|
git pull
|
|
|
|
cd ../..
|
|
mvn clean package
|