Skip to content
Snippets Groups Projects
Commit 55aa2a29 authored by Mike McQuaid's avatar Mike McQuaid
Browse files

Fix spaced paths with brew bottle.

We shouldn't ever really have these but better to be safe than sorry.
parent bc724bd3
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment