diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-10-26 12:58:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-26 12:58:58 -0400 |
commit | c4d33e8d778aa1b86197f1c54ff8e4e61a2ebf53 (patch) | |
tree | 6c105568b40b1b4bd3166eac7a5db20450b177e8 /cli/main.rs | |
parent | b9dc2c3521fc5d1ad2cb3579f9be7ca8e3fd90c6 (diff) |
fix: Use -rw-r--r-- for cache files (#8132)
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/main.rs b/cli/main.rs index 2acdff57d..75677d1fb 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -375,7 +375,7 @@ async fn bundle_command( if let Some(out_file_) = out_file.as_ref() { let output_bytes = output.as_bytes(); let output_len = output_bytes.len(); - deno_fs::write_file(out_file_, output_bytes, 0o666)?; + deno_fs::write_file(out_file_, output_bytes, 0o644)?; info!( "{} {:?} ({})", colors::green("Emit"), |