diff options
author | Ameya Varade <ameya.varade@clogeny.com> | 2013-07-04 18:55:54 +0530 |
---|---|---|
committer | adamedx <adamed@opscode.com> | 2013-07-11 06:50:27 -0700 |
commit | 17d2789d4823b026d6ed673b05a13f6586116814 (patch) | |
tree | 391ce131e53a1b0848bdc5b1b90d7b22f2da4075 /bin | |
parent | 98c11727c25db302550e4332bae1ef2a7de6fac8 (diff) | |
download | chef-17d2789d4823b026d6ed673b05a13f6586116814.tar.gz |
Disabling Readline extension module in IRB
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/chef-shell | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/chef-shell b/bin/chef-shell index 90598d665d..c1cd0d4873 100755 --- a/bin/chef-shell +++ b/bin/chef-shell @@ -31,4 +31,6 @@ $:.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 Shell.start |