Skip to content

Commit 2e01063

Browse files
committed
chore: add chmod
1 parent c664732 commit 2e01063

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

crates/tools/dev/src/main.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,11 @@ fn build(target: &str) {
9999
.join("release")
100100
.join("kill_tree_cli")
101101
};
102+
103+
if cfg!(unix) {
104+
run("chmod", &["+x", file_path.to_str().unwrap()]);
105+
}
106+
102107
let mut output_path = std::fs::OpenOptions::new()
103108
.write(true)
104109
.append(true)

0 commit comments

Comments
 (0)