diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/chef-shell | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/chef-shell b/bin/chef-shell index 29a2cb7746..d6ebfc9fe2 100755 --- a/bin/chef-shell +++ b/bin/chef-shell @@ -31,6 +31,7 @@ $:.unshift(File.expand_path(File.join(File.dirname(__FILE__), "..", "lib"))) require "chef/shell" -#irb --noreadline Don't use Readline extension module -IRB.conf[:USE_READLINE] = false if (ENV['OS'] == 'Windows_NT') +# On Windows only, enable irb --noreadline because of input problems -- +# See CHEF-3284. +IRB.conf[:USE_READLINE] = false if RUBY_PLATFORM =~ /mswin|mingw|windows/ Shell.start |