pull/4/head
Natapat Samutpong 2022-03-31 22:01:42 +07:00
commit 9c1e0927da
1 changed files with 1 additions and 7 deletions

View File

@ -1,4 +1,4 @@
use std::{fs, io::Write, process::Command, path::PathBuf};
use std::{fs, io::Write, path::PathBuf};
use clap::Parser as ArgParser;
@ -100,12 +100,6 @@ fn main() {
logif!(0, format!("Compilation took {}ms", duration));
logif!(0, format!("Wrote output to `{}`", output_path.display()));
Command::new("chmod")
.arg("+x")
.arg(&output_path)
.spawn()
.expect("Failed to chmod file");
},
None => { unreachable!(); }
}