Skip to content

Commit 8dc13c7

Browse files
committed
remove / prefix
1 parent 76a9f87 commit 8dc13c7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name := """codacy-engine-scala-seed"""
22

33
organization := "com.codacy"
44

5-
version := "1.3.0"
5+
version := "1.4.0"
66

77
scalaVersion := "2.10.5"
88

src/main/scala/codacy/dockerApi/DockerEngine.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ abstract class DockerEngine(Tool: Tool) {
4343
}
4444

4545
private def relativize(path: String) = {
46-
path.stripPrefix(DockerEnvironment.sourcePath.toString)
46+
path.stripPrefix(DockerEnvironment.sourcePath.toString).stripPrefix("/")
4747
}
4848

4949
private def logResult[T](result: T)(implicit fmt: Writes[T]) = {

0 commit comments

Comments
 (0)