Skip to content

Commit 15006c2

Browse files
author
Kapil Borle
committed
Fix createModule task in build script
1 parent 3fbf4d9 commit 15006c2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.build.ps1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -178,11 +178,11 @@ task createModule {
178178
}
179179

180180
CopyToDestinationDir $itemsToCopyBinaries $destinationDirBinaries
181-
}
182181

183-
# copy newtonsoft dll if net451 framework
184-
if ($Framework -eq "net451") {
185-
copy-item -path "$solutionDir\Rules\bin\$Configuration\$Framework\Newtonsoft.Json.dll" -Destination $destinationDirBinaries
182+
# copy newtonsoft dll if net451 framework
183+
if ($Framework -eq "net451") {
184+
copy-item -path "$solutionDir\Rules\bin\$Configuration\$Framework\Newtonsoft.Json.dll" -Destination $destinationDirBinaries
185+
}
186186
}
187187
}
188188

@@ -246,7 +246,7 @@ task uninstall -if {Test-PSSADestModulePath} {
246246
Remove-Item -Force -Recurse $pssaDestModulePath
247247
}
248248

249-
task install -if {Test-Path $modulePath} uninstall,{
249+
task install -if {Test-Path $modulePath} uninstall, {
250250
Copy-Item `
251251
-Recurse `
252252
-Path $modulePath `

0 commit comments

Comments
 (0)