From 8663391c5c81066dcc2c6fb049a2a38c90573a14 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Thu, 10 Feb 2011 22:05:56 -0800 Subject: [PATCH] Fix a missing assignment --- lib/net/ssh/shell.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/net/ssh/shell.rb b/lib/net/ssh/shell.rb index 796eee4..b02e203 100644 --- a/lib/net/ssh/shell.rb +++ b/lib/net/ssh/shell.rb @@ -87,7 +87,7 @@ def subshell(command, &callback) end def execute!(command, &callback) - execute(command, &callback) + process = execute(command, &callback) wait! process end