Skip to content

Commit f3fc94d

Browse files
remove double entry point
1 parent 6efea76 commit f3fc94d

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

init-plain/usr/local/bin/entrypoint.sh

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,6 @@ set -e
1313
if [[ -z ${SKIP_ENTRYPOINTS} ]];then
1414
if [[ "X${ENTRYPOINTS_DIR}" != "X" ]];then
1515
if [[ -d ${ENTRYPOINTS_DIR} ]];then
16-
for x in $(find /opt/entry/ -type f -perm /u+x |sort);do
17-
qecho "> execute entrypoint '${x}'"
18-
if [[ "$x" == *.env ]];then
19-
source ${x}
20-
else
21-
${x}
22-
fi
23-
done
2416
for x in $(find ${ENTRYPOINTS_DIR} -type f -perm /u+x |sort);do
2517
qecho "> execute entrypoint '${x}'"
2618
if [[ "$x" == *.env ]];then

0 commit comments

Comments
 (0)