diff options
| author | Jack Nagel | 2014-06-23 21:19:26 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-06-23 22:11:39 -0500 |
| commit | 81f00662b8ac47bd33960fdd08c71260359b13b4 (patch) | |
| tree | 6b57ea60d84b1c94603f6c79c11faceabb7ac158 /Library | |
| parent | b23e5a351f36deb84b3a9debebb4f7c9b4196343 (diff) | |
| download | homebrew-81f00662b8ac47bd33960fdd08c71260359b13b4.tar.bz2 | |
Explicitly create top-level directories for tests
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/test/testing_env.rb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Library/Homebrew/test/testing_env.rb b/Library/Homebrew/test/testing_env.rb index 605cdfc5c..1d6f5dcdb 100644 --- a/Library/Homebrew/test/testing_env.rb +++ b/Library/Homebrew/test/testing_env.rb @@ -48,9 +48,8 @@ MACOS_VERSION = ENV.fetch('MACOS_VERSION') { MACOS_FULL_VERSION[/10\.\d+/] } ORIGINAL_PATHS = ENV['PATH'].split(File::PATH_SEPARATOR).map{ |p| Pathname.new(p).expand_path rescue nil }.compact.freeze # Test environment setup -%w{Library/Formula Library/ENV}.each do |d| - HOMEBREW_REPOSITORY.join(d).mkpath -end +%w{ENV Formula}.each { |d| HOMEBREW_LIBRARY.join(d).mkpath } +%w{cache formula_cache cellar logs}.each { |d| HOMEBREW_PREFIX.parent.join(d).mkpath } # Test fixtures and files can be found relative to this path TEST_DIRECTORY = File.dirname(File.expand_path(__FILE__)) |
