We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6033362 commit 3e28297Copy full SHA for 3e28297
scripts/main.ps1
@@ -6,8 +6,8 @@ $codePath = Resolve-Path -Path $path | Select-Object -ExpandProperty Path
6
Write-Host "List files:"
7
(Get-ChildItem -Path $pwd -Recurse -Force).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
+Write-Host "Looking for settings file under $pwd"
+$tmpSettingsFilePath = Join-Path -Path $pwd -ChildPath $env:PSMODULE_INVOKE_SCRIPTANALYZER_INPUT_SettingsFilePath
11
Write-Host "Checking: $tmpSettingsFilePath"
12
$settingsFileExists = Test-Path -Path $tmpSettingsFilePath
13
if ($settingsFileExists) {
0 commit comments