Skip to content

Commit

Permalink
fix: Deno allow run git (#2791)
Browse files Browse the repository at this point in the history
  • Loading branch information
gbouv committed Dec 6, 2023
1 parent 90668fb commit 256ee64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/windmill-worker/src/deno_executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ run().catch(async (e) => {{
args.push("--allow-read=./,/tmp/windmill/cache/deno/");
args.push("--allow-write=./");
args.push("--allow-env");
args.push("--allow-run='git'");
args.push("--allow-run=git");
} else {
args.push("-A");
}
Expand Down

0 comments on commit 256ee64

Please sign in to comment.