drone. More verbose output for directory test in .drone.yml.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
54b8827980
commit
e0af7b5909
|
@ -6,5 +6,5 @@ steps:
|
||||||
- name: validate
|
- name: validate
|
||||||
image: 'docker/compose:1.29.2'
|
image: 'docker/compose:1.29.2'
|
||||||
commands:
|
commands:
|
||||||
- for DIR in */ ; do if [[ $(expr match "$DIR" '^_') != 0 ]] ; then continue; fi && test -f $DIR/.env.dist && cp $DIR/.env.dist $DIR/.env ; done
|
- for DIR in */ ; do if [[ $(expr match "$DIR" "^_") != 0 ]] ; then echo "SKIPPING $DIR" && continue; fi && test -f $DIR/.env.dist && cp $DIR/.env.dist $DIR/.env ; done
|
||||||
- for DIR in */ ; do if [[ $(expr match "$DIR" '^_') != 0 ]] ; then continue; fi && echo $DIR && cd $DIR && docker-compose config && cd .. ; done
|
- for DIR in */ ; do if [[ $(expr match "$DIR" "^_") != 0 ]] ; then echo "SKIPPING $DIR" && continue; fi && echo $DIR && cd $DIR && docker-compose config && cd .. ; done
|
||||||
|
|
Loading…
Reference in a new issue