Skip to content

Commit 9d2228c

Browse files
authored
Windows: Skip msi files! (#200)
1 parent 6391057 commit 9d2228c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/stage4/src/executors/github.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@ impl GitHub {
108108
fn is_likely_binary(name: &str) -> bool {
109109
let name_lower = name.to_lowercase();
110110

111+
if name_lower.ends_with(".msi") {
112+
return false;
113+
}
114+
111115
let binary_extensions = [".exe", ".zip", ".tar.gz", ".tgz", ".tar.bz2"];
112116

113117
for ext in &binary_extensions {

0 commit comments

Comments
 (0)