Skip to content
Snippets Groups Projects
Unverified Commit 94017ac3 authored by Mike McQuaid's avatar Mike McQuaid Committed by GitHub
Browse files

Merge pull request #6464 from idoo/master

Create '.keepme' files in directories
parents 5356ebb2 704ea4b4
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,12 @@ module Homebrew
Keg::MUST_EXIST_DIRECTORIES.each do |dir|
begin
FileUtils.mkdir_p(dir) unless dir.exist?
# Create these files to ensure that these directories aren't removed
# by the Catalina installer.
# (https://github.com/Homebrew/brew/issues/6263)
keep_file = dir/".keepme"
FileUtils.touch(keep_file) unless keep_file.exist?
rescue
nil
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment