Cron - Separate cron e2e from upstream and for different repo (#8300)

* separate cron e2e from upstream and for different repo

* remove useless env

---------

Co-authored-by: alfresco-build <alfresco-build@hyland.com>
This commit is contained in:
Maurizio Vitale
2023-02-22 14:30:29 +00:00
committed by GitHub
parent 8625a49df7
commit 90c8cb3add
4 changed files with 36 additions and 19 deletions

View File

@@ -157,15 +157,16 @@ rm -rf $TEMP_GENERATOR_DIR
if [ "$DRY_RUN" = "false" ]; then
if [ "$REPO" = "alfresco-apps" ]; then
update $REPO
else
if [ "$REPO" = "all" ]; then
update "generator-alfresco-adf-app"
update "alfresco-content-app"
update "alfresco-applications"
update "alfresco-apps"
else
update $REPO
fi
else
echo "[dry-run] it would have update repos: 'generator-alfresco-adf-app', 'alfresco-content-app', $REPO"
echo "[dry-run] it would have update repos: $REPO "
fi
exit $?