diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-11-23 17:01:59 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-11-23 17:01:59 +0900 |
| commit | b1ee892818811caed07dc138aadbc52c654944a0 (patch) | |
| tree | cfa3afb1fabd55b6c7e00f4fda090828c6c67014 /lib | |
| parent | e6b06eafb3d0319599d63afbd52738eca717a588 (diff) | |
| parent | 2f85290065c3a848f04fc14e9a0bc47303db324d (diff) | |
| download | mruby-b1ee892818811caed07dc138aadbc52c654944a0.tar.gz mruby-b1ee892818811caed07dc138aadbc52c654944a0.zip | |
Merge pull request #5183 from shuujii/change-output-condition-in-_pp
Change output condition in `_pp`
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/mruby/core_ext.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mruby/core_ext.rb b/lib/mruby/core_ext.rb index 3b2406c36..c404bfec9 100644 --- a/lib/mruby/core_ext.rb +++ b/lib/mruby/core_ext.rb @@ -27,7 +27,7 @@ def install_D(src, dst) end def _pp(cmd, src, tgt=nil, indent: nil) - return if Rake.verbose + return if Rake.application.options.silent width = 5 template = indent ? "%#{width * indent}s %s %s" : "%-#{width}s %s %s" |
