aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2018-01-21 14:51:06 +0000
committerGitHub2018-01-21 14:51:06 +0000
commit282277ecbee453619eec83c21c8eb80723b3f446 (patch)
tree2447525dce07f80b10c5313a391232dfb0122f08 /Library
parent899ee8261a184391f0ff774a867324e873730124 (diff)
parent2e1ec02aeb0f5bea48826861c848583b217bba33 (diff)
downloadbrew-282277ecbee453619eec83c21c8eb80723b3f446.tar.bz2
Merge pull request #3702 from ilovezfs/fix-rmdir_if_possible-with-mount-points
pathname: fix rmdir_if_possible with mount points
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/extend/pathname.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/extend/pathname.rb b/Library/Homebrew/extend/pathname.rb
index 8e10971e1..b4311f13f 100644
--- a/Library/Homebrew/extend/pathname.rb
+++ b/Library/Homebrew/extend/pathname.rb
@@ -255,7 +255,7 @@ class Pathname
else
false
end
- rescue Errno::EACCES, Errno::ENOENT
+ rescue Errno::EACCES, Errno::ENOENT, Errno::EBUSY
false
end