From 5d6749d288609a46867e0370b0d33f7ca4fc9865 Mon Sep 17 00:00:00 2001 From: Bryan Jen Date: Mon, 12 Mar 2018 12:24:28 -0700 Subject: [PATCH] Ruby 2.4.3 transition --- lib/pdk/cli/exec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pdk/cli/exec.rb b/lib/pdk/cli/exec.rb index 643821416..75ca7eb51 100644 --- a/lib/pdk/cli/exec.rb +++ b/lib/pdk/cli/exec.rb @@ -31,7 +31,7 @@ def self.bundle(*args) def self.bundle_bin bundle_bin = Gem.win_platform? ? 'bundle.bat' : 'bundle' - vendored_bin_path = File.join('private', 'ruby', '2.1.9', 'bin', bundle_bin) + vendored_bin_path = File.join('private', 'ruby', '2.4.3', 'bin', bundle_bin) try_vendored_bin(vendored_bin_path, bundle_bin) end