Skip to content

Commit c68e389

Browse files
author
Matt Karl
committed
Fixed the build specific platform
1 parent 50e4f9c commit c68e389

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tasks/aliases.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,14 @@ module.exports = function(grunt)
4747
var tasks = [];
4848

4949
// Package a single platform
50-
if (platform)
50+
if (/win/.test(platform))
5151
{
5252
tasks.push('exec:package' + platform);
5353
}
54+
else if (/osx/.test(platform))
55+
{
56+
tasks.push('appdmg:' + platform);
57+
}
5458
// Package all platforms
5559
else
5660
{

0 commit comments

Comments
 (0)