We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e227d2a commit c3c8e5aCopy full SHA for c3c8e5a
src/chocolatey.resources/helpers/chocolateyInstaller.psm1
@@ -51,7 +51,8 @@ if (Test-Path($extensionsPath)) {
51
Get-ChildItem $extensionsPath -recurse -filter "*.dll" | Select -ExpandProperty FullName | % {
52
$path = $_;
53
try {
54
- Write-Debug "Importing '$path'";
+ Write-Debug "Importing '$path'";
55
+ Write-Host "Loading '$([System.IO.Path]::GetFileNameWithoutExtension($path))' extension.";
56
Import-Module $path;
57
} catch {
58
if ($env:ChocolateyPowerShellHost -eq 'true') {
0 commit comments