From d1aa2bb22764978c5fd9ab3c2b8c08918b97cea6 Mon Sep 17 00:00:00 2001 From: Matthaus Owens Date: Wed, 30 Oct 2013 21:17:00 -0700 Subject: [PATCH] (maint) Add parens to system call to disambiguate the *. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 849f39b0..8d1934ab 100644 --- a/Rakefile +++ b/Rakefile @@ -37,7 +37,7 @@ def init end def safe_system *args - raise RuntimeError, "Failed: #{args.join(' ')}" unless system *args + raise RuntimeError, "Failed: #{args.join(' ')}" unless system(*args) end spec = Gem::Specification.new do |s|