disinto/docker/agents
Claude bbaccd678d
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/pr/ci Pipeline was successful
fix: entrypoint: validate_projects_dir silently exits instead of logging FATAL under set -eo pipefail (#877)
`compgen -G ... | wc -l` under `set -eo pipefail` aborts the script on
the non-zero pipeline exit (compgen returns 1 on no match) before the
FATAL diagnostic branch can run. The container still fast-fails, but
operators saw no explanation.

Switch to the conditional `if ! compgen -G ... >/dev/null 2>&1; then`
pattern already used at the two other compgen call sites in this file
(bootstrap_factory_repo and the PROJECT_NAME parser). The count for the
success-path log is computed after we've confirmed at least one match.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-16 18:36:42 +00:00
..
Dockerfile fix: add tomlkit to Dockerfile for comment-preserving TOML editing (#886) 2026-04-16 16:21:07 +00:00
entrypoint.sh fix: entrypoint: validate_projects_dir silently exits instead of logging FATAL under set -eo pipefail (#877) 2026-04-16 18:36:42 +00:00