summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-03-05 10:59:04 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-03-20 14:22:38 +0100
commitf957d74e43f7db9f117585dbc95d5d7adf90a68c (patch)
tree2bbcf52d937f220c97dd26256a56f6c40ebfa696
parent5d196ef0eaa2f9ff64dcc648cc6d7a3ad701731e (diff)
downloadbundler-f957d74e43f7db9f117585dbc95d5d7adf90a68c.tar.gz
Abort when building man pages without ronn
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index e5b318858e..364ba3ed1f 100644
--- a/Rakefile
+++ b/Rakefile
@@ -240,7 +240,7 @@ namespace :man do
require "ronn"
rescue LoadError
task(:require) { abort "We couln't activate ronn (#{ronn_requirement}). Try `gem install ronn:'#{ronn_requirement}'` to be able to release!" }
- task(:build) { warn "We couln't activate ronn (#{ronn_requirement}). Try `gem install ronn:'#{ronn_requirement}'` to be able to build the help pages" }
+ task(:build) { abort "We couln't activate ronn (#{ronn_requirement}). Try `gem install ronn:'#{ronn_requirement}'` to be able to build the help pages" }
else
directory "man"