diff options
| author | Xu Cheng | 2016-03-20 01:44:36 +0800 |
|---|---|---|
| committer | Xu Cheng | 2016-03-21 19:07:38 +0800 |
| commit | ce7b32cec835bb658df75a0c691db9a97921163c (patch) | |
| tree | 4be42d9ee326a5ca278a56d0f6c614452b0ef5e7 /Library/Homebrew/test/lib/config.rb | |
| parent | 28b4923dad7a421f6f6d2598a5661a147268a4c7 (diff) | |
| download | brew-ce7b32cec835bb658df75a0c691db9a97921163c.tar.bz2 | |
add HOMEBREW_ENV_PATH internal variable
`Library/ENV` like `Library/Homebrew` is part of Homebrew basecode. It
should be able to be accessed during the `brew tests`.
By adding HOMEBREW_ENV_PATH variable, we allow test suit to locate these
codes.
Diffstat (limited to 'Library/Homebrew/test/lib/config.rb')
| -rw-r--r-- | Library/Homebrew/test/lib/config.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Homebrew/test/lib/config.rb b/Library/Homebrew/test/lib/config.rb index cf9578544..f6e601d52 100644 --- a/Library/Homebrew/test/lib/config.rb +++ b/Library/Homebrew/test/lib/config.rb @@ -14,6 +14,7 @@ HOMEBREW_PREFIX = Pathname.new(TEST_TMPDIR).join("prefix") HOMEBREW_REPOSITORY = HOMEBREW_PREFIX HOMEBREW_LIBRARY = HOMEBREW_REPOSITORY+"Library" HOMEBREW_LIBRARY_PATH = Pathname.new(File.expand_path("../../..", __FILE__)) +HOMEBREW_ENV_PATH = HOMEBREW_LIBRARY_PATH.parent+"ENV" HOMEBREW_LOAD_PATH = [File.expand_path("..", __FILE__), HOMEBREW_LIBRARY_PATH].join(":") HOMEBREW_CACHE = HOMEBREW_PREFIX.parent+"cache" HOMEBREW_CACHE_FORMULA = HOMEBREW_PREFIX.parent+"formula_cache" |
