summaryrefslogtreecommitdiffhomepage
path: root/minirake
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2013-01-21 00:25:58 -0800
committerYukihiro "Matz" Matsumoto <[email protected]>2013-01-21 00:25:58 -0800
commit04941bc1634335c8f7fca3bafc68ca2c25969faf (patch)
tree4f4515f5cebddf0f17d967d94072f7cfc627a9a8 /minirake
parent8e86ff2283d427b5cb2a02607e1aab998cb5090c (diff)
parent300f0d548b956aa6d36e1768a96fd8ec6d400297 (diff)
downloadmruby-04941bc1634335c8f7fca3bafc68ca2c25969faf.tar.gz
mruby-04941bc1634335c8f7fca3bafc68ca2c25969faf.zip
Merge pull request #761 from bovi/beautify-build
Beautify build process output
Diffstat (limited to 'minirake')
-rwxr-xr-xminirake4
1 files changed, 2 insertions, 2 deletions
diff --git a/minirake b/minirake
index 00a2e6486..430e730cb 100755
--- a/minirake
+++ b/minirake
@@ -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