We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eefe555 commit 66bf31bCopy full SHA for 66bf31b
scripts/main.ps1
@@ -3,6 +3,9 @@ $testPath = Resolve-Path -Path "$PSScriptRoot/tests/PSScriptAnalyzer" | Select-O
3
$path = [string]::IsNullOrEmpty($env:PSMODULE_INVOKE_SCRIPTANALYZER_INPUT_Path) ? '.' : $env:PSMODULE_INVOKE_SCRIPTANALYZER_INPUT_Path
4
$codePath = Resolve-Path -Path $path | Select-Object -ExpandProperty Path
5
6
+Write-Host "List files:"
7
+(Get-ChildItem -Path $pwd -Recurse).FullName | Sort-Object
8
+
9
Write-Host "Looking for settings file under $($pwd.Path)"
10
$tmpSettingsFilePath = Join-Path -Path $pwd.Path -ChildPath $env:PSMODULE_INVOKE_SCRIPTANALYZER_INPUT_SettingsFilePath
11
Write-Host "Checking: $tmpSettingsFilePath"
0 commit comments