Skip to content

Commit 29c75e9

Browse files
author
Jaden Peterson
committed
Absolutize the analysis store output path
1 parent ed2098b commit 29c75e9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/scala/higherkindness/rules_scala/workers/common/CommonArguments.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,8 @@ object CommonArguments {
229229
label = namespace.getString("label"),
230230
logLevel = LogLevel(namespace.getString("log_level")),
231231
mainManifest = SandboxUtil.getSandboxPath(workDir, namespace.get[Path]("main_manifest")),
232-
outputAnalysisStore = SandboxUtil.getSandboxPath(workDir, namespace.get[Path]("output_analysis_store")),
232+
outputAnalysisStore =
233+
SandboxUtil.getSandboxPath(workDir, namespace.get[Path]("output_analysis_store")).toAbsolutePath.normalize,
233234
outputJar = SandboxUtil.getSandboxPath(workDir, namespace.get[Path]("output_jar")),
234235
outputUsed = SandboxUtil.getSandboxPath(workDir, namespace.get[Path]("output_used")),
235236
plugins = SandboxUtil.getSandboxPaths(workDir, namespace.getList[Path]("plugins")),

0 commit comments

Comments
 (0)