Skip to content

Commit f4523b2

Browse files
committed
fix(Docker): 修复 TS+ Docker 入口文件判读路径错误导致永远都在执行块代码
fixed #447
1 parent 15f9aae commit f4523b2

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
@@ -12,7 +12,7 @@ if ! [ -e $PLUS_SRC_PATH/public/index.php -o "$(ls -A $PLUS_SRC_PATH)" ]; then
1212
exit 1
1313
fi
1414

15-
if ! [ -e $PLUS_TARGET_PATH/plus/index -o "$(ls -A $PLUS_TARGET_PATH)" ]; then
15+
if ! [ -e $PLUS_TARGET_PATH/plus/index.php -o "$(ls -A $PLUS_TARGET_PATH)" ]; then
1616
echo >&2 "$PLUS_NAME not found in \"$PLUS_TARGET_PATH\" - copying now..."
1717

1818
if [ "$(ls -A $PLUS_TARGET_PATH)" ]; then

0 commit comments

Comments
 (0)