Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mirrors
biopet.biopet
Commits
160ed2d3
Commit
160ed2d3
authored
May 23, 2016
by
bow
Browse files
Merge branch 'fix-report' into 'develop'
Somehow the rootpath was broken fixes #347 See merge request !408
parents
9139289c
10c34a57
Changes
1
Hide whitespace changes
Inline
Side-by-side
biopet-core/src/main/scala/nl/lumc/sasc/biopet/core/report/ReportBuilder.scala
View file @
160ed2d3
...
...
@@ -205,7 +205,7 @@ trait ReportBuilder extends ToolCommand {
val
pageOutputDir
=
new
File
(
outputDir
,
path
.
mkString
(
File
.
separator
))
pageOutputDir
.
mkdirs
()
val
rootPath
=
"./"
+
Array
.
fill
(
path
.
size
)(
"
src/main
"
).
mkString
(
""
)
val
rootPath
=
"./"
+
Array
.
fill
(
path
.
size
)(
"
../
"
).
mkString
val
pageArgs
=
args
++
page
.
args
++
Map
(
"page"
->
page
,
"path"
->
path
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment