Describe the comment syntax

This commit is contained in:
2026-05-10 10:04:31 +02:00
parent 92e88cfcb2
commit 67fdf3d233
2 changed files with 77 additions and 6 deletions
+3 -2
View File
@@ -19,8 +19,9 @@ rule '.bbl' => '.bcf' do |t|
end
namespace :doc do
task :tex do
sh 'pdflatex', '-output-directory', '../build/doc', 'report', chdir: 'doc'
task tex: 'build/doc' do |t|
sh 'pdflatex', '-output-directory', "../#{t.prerequisites.first}", 'report',
chdir: 'doc'
end
end