Skip to content

Commit 9bd468e

Browse files
authored
Fix error message when missing *.depend.psd1 (#126)
Fixes misleading error message when dependency file has been saved erroneously as *.depend.ps1 instead of *.depend.psd1
1 parent 846c56a commit 9bd468e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PSDepend/Public/Invoke-PSDepend.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ Function Invoke-PSDepend {
194194
}
195195
else
196196
{
197-
Write-Warning "No *.depend.ps1 files found under [$PathItem]"
197+
Write-Warning "No *.depend.psd1 files found under [$PathItem]"
198198
}
199199
}
200200
$GetPSDependParams.add('Path',$DependencyFiles)

0 commit comments

Comments
 (0)