[DRE-commits] [gemwatch] 01/01: fix IO.popen call
Antonio Terceiro
terceiro at moszumanska.debian.org
Thu Aug 6 17:48:57 UTC 2015
This is an automated email from the git hooks/post-receive script.
terceiro pushed a commit to branch master
in repository gemwatch.
commit c3d84934249fba7efb2eab4c930e523f634f618c
Author: Antonio Terceiro <terceiro at debian.org>
Date: Thu Aug 6 14:48:31 2015 -0300
fix IO.popen call
---
gemwatch.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gemwatch.rb b/gemwatch.rb
index 9b7746f..726d3bf 100644
--- a/gemwatch.rb
+++ b/gemwatch.rb
@@ -86,7 +86,7 @@ class GemWatch::Gem
File.basename(uri)
end
def run(*cmd)
- subprocess = IO.popen(*cmd, :err => :out)
+ subprocess = IO.popen(cmd, :err => :out)
output = subprocess.read
subprocess.close
if $? && $?.exitstatus > 0
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/gemwatch.git
More information about the Pkg-ruby-extras-commits
mailing list