aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/edit.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2010-12-31 11:00:15 -0800
committerAdam Vandenberg2011-03-12 11:55:07 -0800
commit05d175d51f35848a873f45e97e32020bf10595a7 (patch)
tree42b6edb0b7d78e7b1ae7de0faab169f2e2f78bbf /Library/Homebrew/cmd/edit.rb
parent8ace9f0294ad488bf7236b9d4fb206244a09c445 (diff)
downloadhomebrew-05d175d51f35848a873f45e97e32020bf10595a7.tar.bz2
Use + instead of /.
Diffstat (limited to 'Library/Homebrew/cmd/edit.rb')
-rw-r--r--Library/Homebrew/cmd/edit.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Homebrew/cmd/edit.rb b/Library/Homebrew/cmd/edit.rb
index 6ab91dccf..079f561a0 100644
--- a/Library/Homebrew/cmd/edit.rb
+++ b/Library/Homebrew/cmd/edit.rb
@@ -6,14 +6,14 @@ module Homebrew extend self
# EDITOR isn't a good fit here, we need a GUI client that actually has
# a UI for projects, so apologies if this wasn't what you expected,
# please improve it! :)
- exec 'mate', HOMEBREW_REPOSITORY/"bin/brew",
- HOMEBREW_REPOSITORY/'README.md',
- HOMEBREW_REPOSITORY/".gitignore",
- *Dir[HOMEBREW_REPOSITORY/"Library/*"]
+ exec 'mate', HOMEBREW_REPOSITORY+"bin/brew",
+ HOMEBREW_REPOSITORY+'README.md',
+ HOMEBREW_REPOSITORY+".gitignore",
+ *Dir[HOMEBREW_REPOSITORY+"Library/*"]
else
# Don't use ARGV.formulae as that will throw if the file doesn't parse
paths = ARGV.named.map do |name|
- HOMEBREW_REPOSITORY/"Library/Formula/#{Formula.caniconical_name name}.rb"
+ HOMEBREW_REPOSITORY+"Library/Formula/#{Formula.caniconical_name name}.rb"
end
unless ARGV.force?
paths.each do |path|