From 6e421efef1dc572bd115cd9dbce9b30118d6472f Mon Sep 17 00:00:00 2001 From: OpenClaw Date: Fri, 13 Mar 2026 05:10:58 +0000 Subject: [PATCH] fix: Add --allow-write permission for file uploads --- deno.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deno.json b/deno.json index 2fceab5..bf380fb 100644 --- a/deno.json +++ b/deno.json @@ -1,7 +1,7 @@ { "tasks": { - "dev": "deno run --watch --allow-net --allow-env --allow-read src/main.ts", - "start": "deno run --allow-net --allow-env --allow-read src/main.ts", + "dev": "deno run --watch --allow-net --allow-env --allow-read --allow-write src/main.ts", + "start": "deno run --allow-net --allow-env --allow-read --allow-write src/main.ts", "check": "deno check src/main.ts" }, "imports": {