Skip to content

Commit

Permalink
Merge pull request #93 from KevinMarquette/addcommonfiles !deploy
Browse files Browse the repository at this point in the history
fix build pipeline
  • Loading branch information
KevinMarquette committed Mar 16, 2019
2 parents ef5c4a2 + 9d92378 commit d392ecb
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions build.ps1
@@ -1,6 +1,8 @@
[CmdletBinding()]

param($Task = 'Default')
param(
[parameter(Position=0)]
$Task = 'Default'
)

$Script:Modules = @(
'BuildHelpers',
Expand All @@ -26,9 +28,9 @@ Get-ChildItem Env:APPVEYOR*

$Error.Clear()

'Invoking build...'
"Invoking build action [$Task]"

Invoke-Build $Task -Result 'Result'
Invoke-Build -Task $Task -Result 'Result'
if ($Result.Error)
{
$Error[-1].ScriptStackTrace | Out-String
Expand Down

0 comments on commit d392ecb

Please sign in to comment.