Skip to content

Commit

Permalink
(ruby.install) Install for all users by default
Browse files Browse the repository at this point in the history
Ruby Installer now seems to need to have this specified.
  • Loading branch information
chadlwilson committed Jan 5, 2024
1 parent 34c2796 commit 7f93ede
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion automatic/ruby.install/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ $packageArgs = @{
fileType = 'exe'
file = "$toolsPath\rubyinstaller-3.3.0-1-x86.exe"
file64 = "$toolsPath\rubyinstaller-3.3.0-1-x64.exe"
silentArgs = '/verysilent /dir="{0}" /tasks="{1}"' -f $installDir, ($tasks -join ',')
silentArgs = '/verysilent /allusers /dir="{0}" /tasks="{1}"' -f $installDir, ($tasks -join ',')
validExitCodes = @(0)
softwareName = 'ruby *'
}
Expand Down

0 comments on commit 7f93ede

Please sign in to comment.