File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -259,7 +259,7 @@ impl Blacksmith {
259259 writeln ! ( buffer, "---------|--------|------|--------" ) . unwrap ( ) ;
260260
261261 for ( name, platform) in & self . platforms {
262- let extensions: & [ & str ] = if name. contains ( "windows" ) {
262+ let extensions: & [ & str ] = if name. contains ( "windows" ) && !name . contains ( "gnullvm" ) {
263263 & [ "msi" , "tar.xz" ]
264264 } else if name. contains ( "darwin" ) {
265265 & [ "pkg" , "tar.xz" ]
@@ -312,7 +312,7 @@ impl Blacksmith {
312312 writeln ! ( buffer, "---------|--------" ) . unwrap ( ) ;
313313
314314 for name in platforms {
315- let extensions: & [ & str ] = if name. contains ( "windows" ) {
315+ let extensions: & [ & str ] = if name. contains ( "windows" ) && !name . contains ( "gnullvm" ) {
316316 & [ "msi" , "tar.gz" ]
317317 } else if name. contains ( "darwin" ) {
318318 & [ "pkg" , "tar.gz" ]
You can’t perform that action at this time.
0 commit comments