Skip to content

Commit bc06e8c

Browse files
authored
Merge pull request #635 from ushion0a/main
fix: 修复docker启动脚本中 pmhq_host 环境变量被错误赋值给 port 的问题
2 parents 1856caa + c74146b commit bc06e8c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docker/startup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ if [ -n "$pmhq_port" ]; then
5757
port="$pmhq_port"
5858
fi
5959
if [ -n "$pmhq_host" ]; then
60-
port="$pmhq_host"
60+
host="$pmhq_host"
6161
fi
6262
node ./llonebot.js --pmhq-port=$port --pmhq-host=$host

0 commit comments

Comments
 (0)