Skip to content

Commit 73593e9

Browse files
committed
Fix biome formatting in setup.js path traversal validation
1 parent 2c6dae1 commit 73593e9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,9 @@ function configApply() {
535535
const codeforgeRoot = path.resolve(codeforgeDir);
536536
const srcPath = path.resolve(codeforgeRoot, entry.src);
537537
if (!srcPath.startsWith(codeforgeRoot + path.sep)) {
538-
console.log(" Skip: " + entry.src + " (source path escapes .codeforge/)");
538+
console.log(
539+
" Skip: " + entry.src + " (source path escapes .codeforge/)",
540+
);
539541
skipped++;
540542
continue;
541543
}

0 commit comments

Comments
 (0)