diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2019-12-28 17:43:54 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-12-28 17:43:54 +0900 |
| commit | e9de5a7a5c71e52c675abc421340c3dab72d3e85 (patch) | |
| tree | 33b63ae388810dd3fd1f1f4e96990b37c7229586 /Rakefile | |
| parent | d2f34a845514d45e9651a87d445e2d1bdabe680a (diff) | |
| parent | bb98fd78c3d14c550187a96b9ed6975e8b719a68 (diff) | |
| download | mruby-e9de5a7a5c71e52c675abc421340c3dab72d3e85.tar.gz mruby-e9de5a7a5c71e52c675abc421340c3dab72d3e85.zip | |
Merge pull request #4911 from shuujii/use-Rake.verbose-instead-of-verbose-and-pp_show
Use `Rake.verbose` instead of `$verbose` and `$pp_show` in build scripts
Diffstat (limited to 'Rakefile')
| -rw-r--r-- | Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ MRUBY_ROOT = File.dirname(File.expand_path(__FILE__)) MRUBY_BUILD_HOST_IS_CYGWIN = RUBY_PLATFORM.include?('cygwin') MRUBY_BUILD_HOST_IS_OPENBSD = RUBY_PLATFORM.include?('openbsd') -$verbose = Rake.verbose == true +Rake.verbose(false) if Rake.verbose == Rake::DSL::DEFAULT $LOAD_PATH << File.join(MRUBY_ROOT, "lib") |
