sillyspec 3.17.14 → 3.17.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/run.js +1 -1
package/package.json
CHANGED
package/src/run.js
CHANGED
|
@@ -1864,7 +1864,7 @@ async function completeStep(pm, progress, stageName, cwd, outputText, inputText
|
|
|
1864
1864
|
}
|
|
1865
1865
|
// quick 阶段完成前强制检查 quicklog 是否创建
|
|
1866
1866
|
if (stageName === 'quick') {
|
|
1867
|
-
const quicklogDir = join(specBase, '
|
|
1867
|
+
const quicklogDir = join(specBase, 'quicklog')
|
|
1868
1868
|
const hasQuicklog = existsSync(quicklogDir) && readdirSync(quicklogDir).some(f => f.endsWith('.md') && f.startsWith('QUICKLOG'))
|
|
1869
1869
|
if (!hasQuicklog) {
|
|
1870
1870
|
console.error(`\n❌ quick 阶段完成校验失败:未检测到 QUICKLOG 记录文件。`)
|