Skip to content

Commit

Permalink
re-fix: fix: add new Windows docker.exe location (#5021)
Browse files Browse the repository at this point in the history
  • Loading branch information
shazron authored Nov 2, 2020
1 parent f18e9d5 commit 6feda87
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ trait WindowsDockerClient {

override protected def executableAlternatives: List[String] = {
val executable = loadConfig[String]("whisk.docker.executable").toOption
List("""C:\Program Files\Docker\Docker\resources\bin\docker.exe""") ++ executable
List(
"""C:\Program Files\Docker\Docker\resources\bin\docker.exe""",
"""C:\Program Files\Docker\Docker\resources\docker.exe""") ++ executable
}
}

Expand Down

0 comments on commit 6feda87

Please sign in to comment.