Skip to content

Commit

Permalink
Keep local directory based channels as absolute path in metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
alexarchambault committed Feb 14, 2020
1 parent 10e6b4b commit c3f0f48
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -101,6 +101,6 @@ object Channel {
case s: JavaOrScalaModule.ScalaModule => Left(s"Scala dependencies ($s) not accepted as channels")
}
else
Right(FromDirectory(fs.getPath(s)))
Right(FromDirectory(fs.getPath(s).toAbsolutePath))

}

0 comments on commit c3f0f48

Please sign in to comment.