Skip to content

Commit 8767957

Browse files
frmt script
1 parent 6678f2b commit 8767957

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.build/setup.ps1

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
param (
2-
[string]$Action="default",
2+
[string]$Action="default",
33
[hashtable]$properties=@{},
4-
[switch]$Help
4+
[switch]$Help
55
)
66

77
function Install-Chocolatey()
@@ -70,17 +70,13 @@ $psakeDirectory = (Resolve-Path $env:ChocolateyInstall\lib\Psake*)
7070
#appveyor for some reason have different location for psake (it has older psake version?)
7171
if($env:APPVEYOR_REPO_BRANCH)
7272
{
73-
Import-Module (Join-Path $psakeDirectory "tools\Psake\Psake.psm1")
73+
Import-Module (Join-Path $psakeDirectory "tools\Psake\Psake.psm1")
7474
}
7575
else
7676
{
77-
Import-Module (Join-Path $psakeDirectory "tools\Psake.psm1")
77+
Import-Module (Join-Path $psakeDirectory "tools\Psake.psm1")
7878
}
7979

8080

8181
#invoke the task
8282
Invoke-Psake -buildFile "$Here\build.ps1" -parameters $properties -tasklist $Action
83-
84-
85-
86-

0 commit comments

Comments
 (0)