Skip to content
Snippets Groups Projects
Commit 0c445180 authored by jurgenhaas's avatar jurgenhaas
Browse files

Add support for initial installation when running job "CheckUpdates"

parent 2b3a4959
No related branches found
No related tags found
No related merge requests found
......@@ -720,8 +720,10 @@ Debug:
- rm /tmp/test.log >/dev/null 2>&1 || true
- EC=0
- if [[ ! -f composer.lock ]]; then DOINSTALL=1; fi
- if [[ $DOINSTALL -eq 1 ]]; then mkdir -p config/default/sync; fi
- if [[ $DOINSTALL -eq 1 ]]; then touch config/default/sync/.gitkeep; fi
- if [[ $DOINSTALL -eq 1 ]]; then composer install --no-interaction --no-progress --no-dev; fi
- if [[ $DOINSTALL -eq 1 ]]; then git add * >/dev/null >2&1 || true; fi
- if [[ $DOINSTALL -eq 1 ]]; then git add * >/dev/null 2>&1 || true; fi
- if [[ $DOINSTALL -eq 1 ]]; then echo "Initial installation" >/tmp/test.log; fi
- if [[ $DOINSTALL -eq 0 ]]; then composer update --no-interaction --no-progress --no-dev --dry-run $NAMESPACES_CHECK_UPDATE >/tmp/test.log 2>&1 || EC=$?; fi
- if [[ $EC -ne 0 ]]; then cat /tmp/test.log; exit 1; fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment