https://github.com/argoproj/argo-cd
Raw File
Tip revision: c25f81cef435383cfe52c02cecfd2d006b25a18a authored by argo-bot on 03 October 2022, 20:50:19 UTC
Bump version to 2.2.13
Tip revision: c25f81c
entrypoint.sh
#!/bin/bash

# If we're started as PID 1, we should wrap command execution through tini to
# prevent leakage of orphaned processes ("zombies").
if test "$$" = "1"; then
	exec tini -- $@
else
	exec "$@"
fi
back to top