Skip to content

Commit

Permalink
fix lock-write for deno
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenfiszel committed Sep 17, 2024
1 parent 1576d33 commit 36088ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions 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 @@ -121,7 +121,7 @@ pub async fn generate_deno_lock(
"--unstable-worker-options",
"--unstable-http",
"--lock=lock.json",
"--frozen=false",
"--lock-write",
"--import-map",
&import_map_path,
"main.ts",
Expand Down
1 change: 1 addition & 0 deletions integration_tests/test/identity_script_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ def setUpClass(cls) -> None:

if not os.environ.get("WMILL_RUNNING_DEV", False):
for lang, script in SCRIPTS.items():
print(f"Creating script for {lang} {script}")
cls._client.create_script(
path=PATH_TEMPLATE.format(lang=lang),
content=script,
Expand Down

0 comments on commit 36088ca

Please sign in to comment.