Skip to content

Commit

Permalink
fix(deno): replace lock-write with frozen=false
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenfiszel committed Sep 17, 2024
1 parent 9297ffc commit 277d085
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/windmill-worker/src/deno_executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ pub async fn generate_deno_lock(
"--unstable-worker-options",
"--unstable-http",
"--lock=lock.json",
"--lock-write",
"--frozen=false",
"--import-map",
&import_map_path,
"main.ts",
Expand Down Expand Up @@ -290,7 +290,7 @@ try {{
if !reqs.is_empty() {
let _ = write_file(job_dir, "lock.json", &reqs)?;
args.push("--lock=lock.json");
args.push("--lock-write");
args.push("--frozen=false");
}
}
let allow_read = format!(
Expand Down

0 comments on commit 277d085

Please sign in to comment.