We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4c2cc8 commit d7cce94Copy full SHA for d7cce94
build.ps1
@@ -90,7 +90,15 @@ if ($BootstrapBuildEnv) {
90
}
91
Write-Host "`n$string`n"
92
} elseif ($Clean) {
93
- Invoke-Build Clean
+ if(hasMissingTools) {
94
+ Write-Host "You are missing needed tools. Run './build.ps1 -BootstrapBuildEnv' to see what they are."
95
+ } else {
96
+ Invoke-Build Clean
97
+ }
98
} else {
- Invoke-Build Build
99
100
101
102
+ Invoke-Build Build
103
104
0 commit comments