diff options
author | andy finch <andyfinch7@gmail.com> | 2019-03-03 16:52:41 -0500 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-03-03 16:52:41 -0500 |
commit | 2af04e674d69863a318b311090a89aaae0108fdd (patch) | |
tree | a8feb99b5330e935eb74eefc35c6d93c00c10389 /src/compiler.rs | |
parent | 1a695dd58b9069d41aa07c4a6c26e4057132ae92 (diff) |
Add write permissions requirement to `op_fetch_module_meta_data`. (#1874)
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), |