From c4d33e8d778aa1b86197f1c54ff8e4e61a2ebf53 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 26 Oct 2020 12:58:58 -0400 Subject: fix: Use -rw-r--r-- for cache files (#8132) --- cli/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/main.rs') 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"), -- cgit v1.2.3