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 dd35798 commit d745aa0Copy full SHA for d745aa0
.build.ps1
@@ -196,6 +196,10 @@ task buildDocs -Inputs $bdInputs -Outputs $bdOutputs {
196
New-ExternalHelp -Path $markdownDocsPath -OutputPath $outputDocsPath -Force
197
}
198
199
-task cleanDocs {
+task cleanDocs -if (Test-Path $outputDocsPath) {
200
+ Remove-Item -Path $outputDocsPath -Recurse -Force
201
+}
202
203
+task newSession {
204
+ Start-Process "powershell" -ArgumentList @('-noexit', '-command "import-module c:\users\kabawany\source\repos\psscriptanalyzer\out\psscriptanalyzer"')
205
0 commit comments