mirror of
https://github.com/ruby/setup-ruby.git
synced 2026-09-13 14:34:21 +02:00
Fix value for options
This commit is contained in:
@@ -240,9 +240,11 @@ async function bundleInstall(gemfile, lockFile, platform, engine, rubyVersion, b
|
||||
return false
|
||||
}
|
||||
|
||||
// Before the lockfile exists, we need to specify which Bundler version to use explicitly
|
||||
const optionsWithBundlerVersion = { env: { ...process.env, BUNDLER_VERSION: bundlerVersion } }
|
||||
|
||||
// config
|
||||
const path = 'vendor/bundle'
|
||||
const optionsWithBundlerVersion = {options: {env: {...process.env, BUNDLER_VERSION: bundlerVersion}}}
|
||||
|
||||
await exec.exec('bundle', ['config', '--local', 'path', path], optionsWithBundlerVersion)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user