Sais-je encore faire des tests en bash ?

This commit is contained in:
Adrien Bourmault 2022-06-24 20:48:27 +00:00
parent e92a345fa8
commit a4cc70f115
1 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ synchro-et-tests:
- rsync -avzlh images/ /var/lib/gsl/domains/chalec.org/images/
- files=(git diff-tree --no-commit-id --name-only -r $CI_COMMIT_SHA)
- cd /home/webmaster/articles
- [ ! gsl check | grep "Err" ]
- [ ! -z "$(gsl check | grep Err)" ]
- gsl sync wip
@ -37,6 +37,6 @@ deploiement: # This job runs in the deploy stage.
for postfile in $(ls *.gsl)
do
echo "Construction de $postfile"
[ ! gsl make $postfile | grep "Err" ]
[ ! -z "$(gsl make $postfile | grep Err)"" ]
done
- echo "Déploiement terminé."