aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorilovezfs2016-10-08 17:40:08 -0700
committerGitHub2016-10-08 17:40:08 -0700
commitf71e4a7e0e4647819d5d3ba6ee6c76c18d7c2f3c (patch)
tree50600f52c58a358e03a47f68a90abbc86760227d /Library
parent1b677ab0ff153137404c06894f5e624a3fa210ee (diff)
parent5efb158860d0a919587c52e65e651153cda9a887 (diff)
downloadbrew-f71e4a7e0e4647819d5d3ba6ee6c76c18d7c2f3c.tar.bz2
Merge pull request #1246 from ilovezfs/glide_home-cleanup
cleanup: remove GLIDE_HOME cache directories
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cleanup.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cleanup.rb b/Library/Homebrew/cleanup.rb
index bb91fa69e..f7db1c11f 100644
--- a/Library/Homebrew/cleanup.rb
+++ b/Library/Homebrew/cleanup.rb
@@ -50,7 +50,7 @@ module Homebrew
cleanup_path(path) { path.unlink }
next
end
- if %w[java_cache npm_cache].include?(path.basename.to_s) && path.directory?
+ if %w[glide_home java_cache npm_cache].include?(path.basename.to_s) && path.directory?
cleanup_path(path) { FileUtils.rm_rf path }
next
end