Fixing missing 'done' in a loop.

This commit is contained in:
Alexey Skobkin 2022-01-27 03:23:33 +03:00
parent 2dde307c83
commit e512622968
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
validate:
image: 'docker/compose:1.29.2'
script:
- for DIR in */ ; do test -f $DIR/.env.dist && cp $DIR/.env.dist $DIR/.env
- for DIR in */ ; do test -f $DIR/.env.dist && cp $DIR/.env.dist $DIR/.env ; done
- for DIR in */ ; do echo $DIR && cd $DIR && docker-compose config && cd .. ; done