Skip to content

Commit

Permalink
Merge pull request #1 from hjungG/fix/powershell
Browse files Browse the repository at this point in the history
fix powershell issue chocolatey/choco#659
  • Loading branch information
hjungG committed Apr 27, 2016
2 parents 5235814 + af62aa5 commit 3a78f00
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nuget/chocolatey.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>chocolatey</id>
<title>Chocolatey</title>
<version>0.9.8.23-nuget28hf4</version>
<version>0.9.8.23-nuget28hf4-ps</version>
<authors>Rob Reynolds, The Chocolatey Team</authors>
<owners>Rob Reynolds</owners>
<summary>Chocolatey is your machine level NuGet repository. Think apt-get for Windows (executables/application packages), not library packages.</summary>
Expand Down
4 changes: 2 additions & 2 deletions src/chocolatey.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
[string] $name,
[switch] $ignoreDependencies = $false,
[alias("x86")][switch] $forceX86 = $false,
[alias("params")][alias("parameters")][alias("pkgParams")][string]$packageParameters = '',
[alias("params","parameters","pkgParams")][string]$packageParameters = '',
[parameter(Position=1, ValueFromRemainingArguments=$true)]
[string[]]$packageNames=@('')
)
Expand Down Expand Up @@ -43,7 +43,7 @@ $currentThread.CurrentCulture = $culture;
$currentThread.CurrentUICulture = $culture;

#Let's get Chocolatey!
$chocVer = '0.9.8.23-nuget28hf4'
$chocVer = '0.9.8.23-nuget28hf4-ps'
$nugetChocolateyPath = (Split-Path -parent $MyInvocation.MyCommand.Definition)
$nugetPath = (Split-Path -Parent $nugetChocolateyPath)
$nugetExePath = Join-Path $nuGetPath 'bin'
Expand Down

0 comments on commit 3a78f00

Please sign in to comment.