alfresco-content-app/update-submodules.sh
Martin Muller fd970c1ef1
ACA-2755 sso simplified ADF integrating (#1295)
* Simplify ADF changing
2020-01-10 12:36:10 +01:00

19 lines
465 B
Bash
Executable File

#!/bin/bash
git pull
git submodule sync --recursive
git submodule update --init --recursive
# Go through all of the submodules switching them to their branches and updating them
echo
echo "Updating alfresco-js-api ..."
echo --------------------------
cd alfresco-js-api && git checkout master && git pull
cd ..
echo
echo "Updating alfresco-ng2-components ..."
echo --------------------------
cd alfresco-ng2-components && git checkout master && git pull
cd ..