1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: set TERM as dumb to enable console output
Author: HIGUCHI Daisuke (VDR dai) <dai@debian.org>
Forwarded: not-needed
Last-Update: 2019-09-14
Index: rabbit/test/command/test-rabbit.rb
===================================================================
--- rabbit.orig/test/command/test-rabbit.rb
+++ rabbit/test/command/test-rabbit.rb
@@ -28,6 +28,7 @@ class RabbitCommandRabbitTest < Test::Un
Dir.chdir(@dir) do
pid = spawn({
"LANG" => "C",
+ "TERM" => "dumb",
},
RbConfig.ruby,
"-I", File.join(@base_dir, "lib"),
|