We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50e4f9c commit c68e389Copy full SHA for c68e389
tasks/aliases.js
@@ -47,10 +47,14 @@ module.exports = function(grunt)
47
var tasks = [];
48
49
// Package a single platform
50
- if (platform)
+ if (/win/.test(platform))
51
{
52
tasks.push('exec:package' + platform);
53
}
54
+ else if (/osx/.test(platform))
55
+ {
56
+ tasks.push('appdmg:' + platform);
57
+ }
58
// Package all platforms
59
else
60
0 commit comments