We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e68d188 commit 3734cbdCopy full SHA for 3734cbd
lib/dockerized.go
@@ -83,7 +83,10 @@ func main() {
83
84
hostName, _ := os.Hostname()
85
hostCwdDirName := filepath.Base(hostCwd)
86
- containerCwd := "/host/" + hostCwdDirName
+ containerCwd := "/host"
87
+ if hostCwdDirName != "\\" {
88
+ containerCwd += "/" + hostCwdDirName
89
+ }
90
91
runOptions := api.RunOptions{
92
Service: commandName,
0 commit comments