Skip to content

Commit ceaa623

Browse files
committed
Build fix for getWebDavUrl() return type
1 parent 83e559a commit ceaa623

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nextflow/src/org/labkey/nextflow/pipeline/NextFlowPipelineJob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ private static Path createConfig(Path configTemplate, Path parentDir, Path jobDi
6868
template = PageFlowUtil.getStreamContentsAsString(in);
6969
}
7070

71-
String webdavUrl = FileContentService.get().getWebDavUrl(parentDir, container, FileContentService.PathType.full);
71+
String webdavUrl = FileContentService.get().getWebDavUrl(parentDir, container, FileContentService.PathType.full).toString();
7272
webdavUrl = StringUtils.stripEnd(webdavUrl, "/");
7373

7474
String substitutedContent = template.replace("${quant_spectra_dir}", "quant_spectra_dir = '" + webdavUrl + "'");

0 commit comments

Comments
 (0)