Skip to content

Commit

Permalink
Merge pull request #27 from michalsznajder/master
Browse files Browse the repository at this point in the history
fix: correct WSL socket file name
  • Loading branch information
buptczq committed Dec 11, 2020
2 parents 37dd280 + bc7ed94 commit 6bcb6fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/wsl.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func listenUnixSock(filename string) (string, net.Listener, error) {
if err != nil {
return "", nil, err
}
path := filepath.Join(home, CYGWIN_SOCK)
path := filepath.Join(home, WSL_SOCK)
os.Remove(path)
l, err := net.Listen("unix", path)
return path, l, err
Expand Down

0 comments on commit 6bcb6fe

Please sign in to comment.