aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-03-27 17:37:38 -0500
committerJack Nagel2014-03-27 17:37:38 -0500
commit02a1d718713583425463717c5e8d8328c67fd5ad (patch)
tree57cd3cbe94b8307293d5ec7f9b2f3781478ea471 /Library
parent7c5e0eb507f65418a8e721fa584de05f8122a7c5 (diff)
downloadbrew-02a1d718713583425463717c5e8d8328c67fd5ad.tar.bz2
Don't mix boolean operator types
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/keg.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/keg.rb b/Library/Homebrew/keg.rb
index a6683c9b3..32680d35e 100644
--- a/Library/Homebrew/keg.rb
+++ b/Library/Homebrew/keg.rb
@@ -249,7 +249,7 @@ class Keg < Pathname
return
end
- dst.delete if mode.overwrite && (dst.exist? or dst.symlink?)
+ dst.delete if mode.overwrite && (dst.exist? || dst.symlink?)
dst.make_relative_symlink src
end