Skip to content

Commit 0a005a9

Browse files
committed
Format spill URI sandbox edits
1 parent 4a0304a commit 0a005a9

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

src/plugins/path-escape-plugin.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,13 @@ function escapeArgs(
6060
const out: Record<string, unknown> = {};
6161
for (const [key, value] of Object.entries(args)) {
6262
if (typeof value === "string" && looksLikePath(key)) {
63-
out[key] = sanitizePath(value, cwd, rootsProvider, allowOutside, toolName);
63+
out[key] = sanitizePath(
64+
value,
65+
cwd,
66+
rootsProvider,
67+
allowOutside,
68+
toolName,
69+
);
6470
} else {
6571
out[key] = value;
6672
}

0 commit comments

Comments
 (0)