mirror of
https://github.com/nimbold/Firelink.git
synced 2026-07-27 12:29:29 +00:00
8 lines
281 B
Python
8 lines
281 B
Python
with open("src-tauri/src/lib.rs", "r") as f:
|
|
content = f.read()
|
|
|
|
content = content.replace('.arg("--js-runtimes").arg(format!("deno:{},node", deno_path.display()));', '.arg("--js-runtimes").arg("deno,node");')
|
|
|
|
with open("src-tauri/src/lib.rs", "w") as f:
|
|
f.write(content)
|