diff options
| author | Jack Nagel | 2014-07-10 21:26:54 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-07-10 22:00:43 -0500 |
| commit | c259866517ac9eb730f2feda8460558135857acd (patch) | |
| tree | c5bb186c49344a7c51e06f6768fa5b8428783df5 /Library/Homebrew/extend | |
| parent | 284389a6bd4bf88269b4db580015e8590dd76a37 (diff) | |
| download | brew-c259866517ac9eb730f2feda8460558135857acd.tar.bz2 | |
Raise Errno::ENOENT instead of RuntimeError from Pathname#install
Diffstat (limited to 'Library/Homebrew/extend')
| -rw-r--r-- | Library/Homebrew/extend/pathname.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/extend/pathname.rb b/Library/Homebrew/extend/pathname.rb index fdf5395c9..78c27bf3f 100644 --- a/Library/Homebrew/extend/pathname.rb +++ b/Library/Homebrew/extend/pathname.rb @@ -35,6 +35,8 @@ class Pathname end def install_p src, new_basename = nil + raise Errno::ENOENT, src.to_s unless File.symlink?(src) || File.exist?(src) + if new_basename new_basename = File.basename(new_basename) # rationale: see Pathname.+ dst = self+new_basename @@ -45,8 +47,6 @@ class Pathname src = src.to_s dst = dst.to_s - raise "#{src} does not exist" unless File.symlink? src or File.exist? src - dst = yield(src, dst) if block_given? mkpath |
