Skip to content

Commit 553790c

Browse files
committed
webroot: 修复脚本重定向语法错误
1 parent 8f9f30c commit 553790c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/module/scripts/core/runtime.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,9 @@ scan_runtime_nodes() {
106106
fi
107107

108108
RUNTIME_NODE_COUNT=$((RUNTIME_NODE_COUNT + 1))
109-
done <<< "$parsed_data"
109+
done << EOF
110+
$parsed_data
111+
EOF
110112

111113
# 如果有文件未能成功提取 tag,计算被跳过的数量
112114
local total_files

0 commit comments

Comments
 (0)