diff options
Diffstat (limited to 'src/compiler.rs')
-rw-r--r-- | src/compiler.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler.rs b/src/compiler.rs index fa86617ce..716a9bbea 100644 --- a/src/compiler.rs +++ b/src/compiler.rs @@ -52,7 +52,7 @@ fn lazy_start(parent_state: &Arc<IsolateState>) -> Resource { let mut cell = C_RID.lock().unwrap(); let permissions = DenoPermissions { allow_read: AtomicBool::new(true), - allow_write: AtomicBool::new(false), + allow_write: AtomicBool::new(true), allow_env: AtomicBool::new(false), allow_net: AtomicBool::new(true), allow_run: AtomicBool::new(false), |