Commit a1a498f9 by Oleg Gaidarenko Committed by GitHub

Build: ignore absence of docker-compose (#17331)

If devenv/docker-compose.yaml file is missing, `devenv-down`
and subsequently `devenv` is not going to work
parent 9ff44b50
......@@ -104,7 +104,8 @@ endif
# drop down the envs
devenv-down:
@cd devenv; \
docker-compose down;
test -f docker-compose.yaml && \
docker-compose down || exit 0;
# TODO recheck the rules and leave only necessary exclusions
gosec: scripts/go/bin/gosec
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment