Skip to content

Commit b725ac5

Browse files
Fix PackTask.ShouldRun
1 parent 73f8fd1 commit b725ac5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

build/Program.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,8 +384,7 @@ public class PackTask : FrostingTask<BuildContext>
384384
{
385385
public override bool ShouldRun(BuildContext context)
386386
{
387-
//return context.IsOnAppVeyorAndBdnNightlyCiCd;
388-
return true;
387+
return context.IsOnAppVeyorAndBdnNightlyCiCd || context.IsLocalBuild;
389388
}
390389

391390
public override void Run(BuildContext context)

0 commit comments

Comments
 (0)