From 7e844cad1c23e0785fca22345e187c3a7c21b270 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Sat, 6 Dec 2014 16:48:20 -0500 Subject: [PATCH] Simplify fossil checkouts --- Library/Homebrew/download_strategy.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb index de092a9a5f..5a661b3d65 100644 --- a/Library/Homebrew/download_strategy.rb +++ b/Library/Homebrew/download_strategy.rb @@ -729,8 +729,9 @@ end class FossilDownloadStrategy < VCSDownloadStrategy def stage super - safe_system fossilpath, "open", @clone - safe_system fossilpath, "checkout", @ref if @ref_type && @ref + args = [fossilpath, "open", @clone] + args << @ref if @ref_type && @ref + safe_system(*args) end private