1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-10-16 02:37:40 -05:00

Compare commits

..

2 commits

Author SHA1 Message Date
azur1s d696c17b05 Update main.rs 2022-03-28 08:32:26 +07:00
azur1s 1607293bb4 wait why are we chmoding 2022-03-28 08:31:59 +07:00

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!(); }
}