aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-08-28 12:00:06 -0500
committerJack Nagel2013-08-28 12:00:06 -0500
commit21bb9912c6654af7fcdb4392c33fe5c68f7a15ad (patch)
tree5164a1c55470ef9b57eb2c18ad93bca5600f894e /Library
parentaaa932d8c54d94f317bc34e2b9ed901c954f36dc (diff)
downloadhomebrew-21bb9912c6654af7fcdb4392c33fe5c68f7a15ad.tar.bz2
cleaner: don't change permissions on paths marked skip_clean
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cleaner.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cleaner.rb b/Library/Homebrew/cleaner.rb
index 990875206..5b2e3a496 100644
--- a/Library/Homebrew/cleaner.rb
+++ b/Library/Homebrew/cleaner.rb
@@ -80,7 +80,7 @@ class Cleaner
path.unlink unless @f.skip_clean? path
elsif not path.symlink?
# Fix permissions
- clean_file_permissions path
+ clean_file_permissions(path) unless @f.skip_clean? path
end
end
end