We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db00ba8 commit be5cc06Copy full SHA for be5cc06
Rakefile
@@ -1,5 +1,15 @@
1
+def exec_or_raise(command)
2
+ puts `#{command}`
3
+ if (! $?.success?)
4
+ raise "'#{command}' failed"
5
+ end
6
+end
7
+
8
namespace :book do
9
10
+ # Download asciidoctor-pdf-cjk-kai_gen_gothic
11
+ exec_or_raise("asciidoctor-pdf-cjk-kai_gen_gothic-install")
12
13
# Variables referenced for build
14
version_string = `git describe --tags --abbrev=0`.chomp
15
if version_string.empty?
0 commit comments