Skip to content
This repository was archived by the owner on Oct 3, 2024. It is now read-only.

Commit c0d210b

Browse files
committed
Fix bash syntax
1 parent e707473 commit c0d210b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
mkdir -p "${APP_DIR}"
1010
cd "${APP_DIR}"
1111

12-
if [ ! -z "${RUN_INIT_SCRIPTS}" && "${RUN_INIT_SCRIPTS}" = "1" ]; then
12+
if [ ! -z "${RUN_INIT_SCRIPTS}" ] && [ "${RUN_INIT_SCRIPTS}" = "1" ]; then
1313
if [ -d "${CUSTOM_SCRIPTS_PATH}" ]; then
1414
cp -r "${CUSTOM_SCRIPTS_PATH}/." "${INIT_DIR}"
1515
fi

0 commit comments

Comments
 (0)