Author: stack
Date: Tue Apr 19 22:55:42 2011
New Revision: 1095233
URL: http://svn.apache.org/viewvc?rev=1095233&view=rev
Log:
Revert check for windows to see if thats what is causing failure up on jenkins
Modified:
hbase/trunk/src/main/ruby/irb/hirb.rb
Modified: hbase/trunk/src/main/ruby/irb/hirb.rb
URL:
http://svn.apache.org/viewvc/hbase/trunk/src/main/ruby/irb/hirb.rb?rev=1095233&r1=1095232&r2=1095233&view=diff
==============================================================================
--- hbase/trunk/src/main/ruby/irb/hirb.rb (original)
+++ hbase/trunk/src/main/ruby/irb/hirb.rb Tue Apr 19 22:55:42 2011
@@ -17,10 +17,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
-require 'rbconfig'
+#require 'rbconfig'
module IRB
- WINDOZE = Config::CONFIG['host_os'] =~ /mswin|mingw/
+ # WINDOZE = Config::CONFIG['host_os'] =~ /mswin|mingw/
# Map the '/dev/null' according to the runing platform
# Under Windows platform the 'dev/null' is not fully compliant with unix,
# and the 'NUL' object need to be use instead.
@@ -38,7 +38,7 @@ module IRB
# no error (though we're not blanking STDERR)
begin
devnull = "/dev/null"
- devnull = "NUL" if WINDOZE
+ #devnull = "NUL" if WINDOZE
f = File.open(devnull, "w")
$stdout = f
super