Skip to content

Commit

Permalink
Merge pull request #77 from isaqb-org/76-fix-broken-index-page
Browse files Browse the repository at this point in the history
Add required variable
  • Loading branch information
programming-wolf authored Jul 31, 2020
2 parents 0998f42 + a43af7e commit 6aa8020
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,18 @@ class RenderCurriculumTask extends AsciidoctorTask {
def fileVersion = project.version.trim() + "-" + language

attributes = [
'icons' : 'font',
'revnumber' : fileVersion,
'revdate' : currentDate,
'document-version' : fileVersion + " (" + currentDate + ")",
'currentDate' : currentDate,
'language' : language,
'withRemarks' : withRemarks,
'debug_adoc' : false,
'pdf-stylesdir' : '../pdf-theme/themes',
'pdf-fontsdir' : '../pdf-theme/fonts',
'pdf-style' : 'isaqb'
'icons' : 'font',
'revnumber' : fileVersion,
'revdate' : currentDate,
'document-version' : fileVersion + " (" + currentDate + ")",
'currentDate' : currentDate,
'language' : language,
'withRemarks' : withRemarks,
'curriculumFileName': curriculumFileName,
'debug_adoc' : false,
'pdf-stylesdir' : '../pdf-theme/themes',
'pdf-fontsdir' : '../pdf-theme/fonts',
'pdf-style' : 'isaqb'
]
}
}
Expand Down

0 comments on commit 6aa8020

Please sign in to comment.