aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Contributions/examples/brew-bottle.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Contributions/examples/brew-bottle.rb b/Library/Contributions/examples/brew-bottle.rb
index 4e3205194..881a35e58 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