We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b112c9e commit b4e8878Copy full SHA for b4e8878
ci/release-image/entrypoint.sh
@@ -21,10 +21,7 @@ fi
21
# Allow users to have scripts run on container startup to prepare workspace.
22
# https://github.com/coder/code-server/issues/5177
23
if [ -d "${ENTRYPOINTD}" ]; then
24
- for f in $(find "${ENTRYPOINTD}" -type f -executable); do
25
- echo "Running Entrypoint: ${f}"
26
- "${f}"
27
- done
+ find "${ENTRYPOINTD}" -type f -executable -print -exec {} \;
28
fi
29
30
exec dumb-init /usr/bin/code-server "$@"
0 commit comments