Don't mix boolean operator types

This commit is contained in:
Jack Nagel 2014-03-27 17:37:38 -05:00
parent 7c5e0eb507
commit 02a1d71871

View File

@ -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