Change output condition in _pp

* Output even with `rake -v` (to help debugging)
* Not output when `rake -s`
This commit is contained in:
KOBAYASHI Shuji
2020-11-23 16:50:15 +09:00
parent 39a11f323e
commit 2f85290065
+1 -1
View File
@@ -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"