about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--code/action.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/action.rb b/code/action.rb
index 89d27bb3..94a202c2 100644
--- a/code/action.rb
+++ b/code/action.rb
@@ -57,7 +57,7 @@ module Action
 			p = fork { exec('x-terminal-emulator', '-e', 'bash', '-c', what) }
 #			Process.detach(p)
 		else
-			p = fork { exec "#{what} 2>> /dev/null >> /dev/null" }
+			p = fork { exec "#{what} 2>> /dev/null >> /dev/null < /dev/null" }
 			Process.detach(p)
 		end
 	end