summaryrefslogtreecommitdiff
path: root/cli/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/main.rs')
-rw-r--r--cli/main.rs2
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"),