diff options
| author | Daniel Bovensiepen <[email protected]> | 2013-01-21 15:57:45 +0800 |
|---|---|---|
| committer | Daniel Bovensiepen <[email protected]> | 2013-01-21 15:57:45 +0800 |
| commit | 56928e9fee2d6d604d72b767826b3ee1d43502b0 (patch) | |
| tree | 28cb5ffe4f8424a413e76225eaaa31a14fafaf05 /minirake | |
| parent | 73eba4d4e86e3bbad0b9c0b24ce88561921470ab (diff) | |
| download | mruby-56928e9fee2d6d604d72b767826b3ee1d43502b0.tar.gz mruby-56928e9fee2d6d604d72b767826b3ee1d43502b0.zip | |
make minirake respect verbose and set verbose to false by default
Diffstat (limited to 'minirake')
| -rwxr-xr-x | minirake | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -277,7 +277,7 @@ module MiniRake # Run the system command +cmd+. def sh(cmd) - puts cmd + puts cmd if $verbose system(cmd) or fail "Command Failed: [#{cmd}]" end @@ -418,7 +418,7 @@ class RakeApp # Read and handle the command line options. def handle_options - $verbose = true + $verbose = false opts = GetoptLong.new(*command_line_options) opts.each { |opt, value| do_option(opt, value) } end |
