diff options
author | Nobuyoshi Nakada <[email protected]> | 2019-07-02 09:19:38 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2019-07-02 09:19:38 +0900 |
commit | f47254d2162a95174ab7d1659bf6ec5a933bd0ca (patch) | |
tree | 10ce17bace6d82d814d7d57d88db9a7b9aaae685 /bootstraptest/runner.rb | |
parent | 897b1e05623996ea1003c812e7705a2d197464b3 (diff) |
colors file has been moved from test to tool
Diffstat (limited to 'bootstraptest/runner.rb')
-rwxr-xr-x | bootstraptest/runner.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstraptest/runner.rb b/bootstraptest/runner.rb index 3a3c8c0938..4e9196ef3d 100755 --- a/bootstraptest/runner.rb +++ b/bootstraptest/runner.rb @@ -140,7 +140,7 @@ End # dircolors-like style colors = (colors = ENV['TEST_COLORS']) ? Hash[colors.scan(/(\w+)=([^:\n]*)/)] : {} begin - File.read(File.join(__dir__, "../test/colors")).scan(/(\w+)=([^:\n]*)/) do |n, c| + File.read(File.join(__dir__, "../tool/colors")).scan(/(\w+)=([^:\n]*)/) do |n, c| colors[n] ||= c end rescue |