You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks to me that there is a variable name mismatch in Install-ChocolateyInstallPackage.ps1 (dc704e9) which is preventing the use of the --installargs option to 'choco install'. Line 72 brings in a value from the environment named "chocolateyInstallArguments", but as far as I can see, line 163 of PowershellService.cs stores the installer arguements in the environment as "installerArguments" earlier on.
The installer arguments option was working in the released 0.9.8.
The text was updated successfully, but these errors were encountered:
Previously, POSH Chocolatey was passing `chocolateyInstallArguments` as
the environment variable used containing the native installer arguments
passed in from the user. Choco was not passing this value as an
environment variable, so custom installer actions were failing.
Allow install arguments to work properly again.
It looks to me that there is a variable name mismatch in Install-ChocolateyInstallPackage.ps1 (dc704e9) which is preventing the use of the --installargs option to 'choco install'. Line 72 brings in a value from the environment named "chocolateyInstallArguments", but as far as I can see, line 163 of PowershellService.cs stores the installer arguements in the environment as "installerArguments" earlier on.
The installer arguments option was working in the released 0.9.8.
The text was updated successfully, but these errors were encountered: