Skip to content

Commit 49f0397

Browse files
committed
Fix windows triples
1 parent 4220158 commit 49f0397

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/controllers/install.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ export default Ember.Controller.extend({
1515
return this.link('i686-apple-darwin');
1616
}.property(),
1717
win64: function() {
18-
return this.link('x86_64-w64-mingw32');
18+
return this.link('x86_64-pc-windows-gnu');
1919
}.property(),
2020
win32: function() {
21-
return this.link('i686-w64-mingw32');
21+
return this.link('i686-pc-windows-gnu');
2222
}.property(),
2323

2424
link: function(target) {

0 commit comments

Comments
 (0)