Skip to content

Commit c1c56a1

Browse files
committed
Fixed a silly typo
1 parent 828f131 commit c1c56a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PowerShellEditorServices.build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ function NeedsRestore($rootPath) {
9595
# obj\project.assets.json files found under that path, implying
9696
# that those folders have not yet been restored.
9797
$projectAssets = (Get-ChildItem "$rootPath\*\obj\project.assets.json")
98-
return ($projectAssets -eq $null) -or ((Get-ChildItem $rootPath).Length -gt $projectAssests.Length)
98+
return ($projectAssets -eq $null) -or ((Get-ChildItem $rootPath).Length -gt $projectAssets.Length)
9999
}
100100

101101
task Restore -If { "Restore" -in $BuildTask -or (NeedsRestore(".\src")) -or (NeedsRestore(".\test")) } -Before Clean, Build, BuildHost, Test {

0 commit comments

Comments
 (0)