From 55aa2a296be215716466016bfff3fc8116881328 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Wed, 1 Dec 2010 23:04:33 +0000 Subject: [PATCH] Fix spaced paths with brew bottle. We shouldn't ever really have these but better to be safe than sorry. --- Library/Contributions/examples/brew-bottle.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Contributions/examples/brew-bottle.rb b/Library/Contributions/examples/brew-bottle.rb index 4e32051943..881a35e582 100755 --- a/Library/Contributions/examples/brew-bottle.rb +++ b/Library/Contributions/examples/brew-bottle.rb @@ -15,7 +15,7 @@ ARGV.each do|formula| HOMEBREW_CELLAR.cd do # Use gzip, much faster than bzip2 and hardly any file size difference # when compressing binaries. - safe_system "tar czf #{destination}/#{filename} #{formula}/#{version}" + safe_system 'tar', 'czf', "#{destination}/#{filename}", "#{formula}/#{version}" end ohai "Bottled #{filename}" end \ No newline at end of file