Skip to content

Commit 5ae0a16

Browse files
authored
fix(entrypoint): bash the user script (#19)
Signed-off-by: Chris Gianelloni <wolf31o2@blinklabs.io>
1 parent a35bbee commit 5ae0a16

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

bin/entrypoint

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ fi
2626

2727
# Execute user startup script if it exists
2828
if [[ -e ${USER_STARTUP_SCRIPT} ]]; then
29-
chmod a+x ${USER_STARTUP_SCRIPT}
30-
${USER_STARTUP_SCRIPT}
29+
bash ${USER_STARTUP_SCRIPT}
3130
fi
3231

3332
# Redirect output to /dev/null unless in debug mode

0 commit comments

Comments
 (0)