Skip to content

Commit

Permalink
(GH-1041) Fix bad PowerShell script
Browse files Browse the repository at this point in the history
  • Loading branch information
ferventcoder committed Jan 4, 2017
1 parent 16fe0c8 commit b738646
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chocolatey.resources/helpers/chocolateyInstaller.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ if (Test-Path($extensionsPath)) {
Get-ChildItem $extensionsPath -recurse -filter "*.psm1" | Select -ExpandProperty FullName | % { Write-Debug "Importing `'$_`'"; Import-Module $_; }
Get-ChildItem $extensionsPath -recurse -filter "*.dll" | Select -ExpandProperty FullName | % {
$path = $_;
if ($path.Contains("extensions\chocolatey\lib-synced") { continue }
if ($path.Contains("extensions\chocolatey\lib-synced")) { continue }

try {
Write-Debug "Importing '$path'";
Expand Down

0 comments on commit b738646

Please sign in to comment.