Skip to content

Commit

Permalink
Fix Ruby version command (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
ofalvai authored Apr 20, 2023
1 parent aec09a6 commit 8f61f08
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions dependencies.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,7 @@ func (f FastlaneRunner) InstallDependencies(opts EnsureDependenciesOpts) error {
func (f FastlaneRunner) reportRubyVersion(useBundler bool, bundlerVersion string, workDir string) {
var versionCmd command.Command
options := &command.Opts{
Stdout: os.Stdout,
Stderr: os.Stderr,
Dir: workDir,
Dir: workDir,
}
if useBundler {
versionCmd = f.rbyFactory.CreateBundleExec("ruby", []string{"--version"}, bundlerVersion, options)
Expand Down

0 comments on commit 8f61f08

Please sign in to comment.