Commit 8ab2c989 authored by Yasuhiro Matsumoto's avatar Yasuhiro Matsumoto Committed by Alex Brainman

os: fixed PathListSeparator to ';' for windows.

Fixed issue 1992

R=golang-dev, alex.brainman
CC=golang-dev
https://golang.org/cl/4661047
parent 89873e60
......@@ -6,7 +6,7 @@ package os
const (
PathSeparator = '\\' // OS-specific path separator
PathListSeparator = ':' // OS-specific path list separator
PathListSeparator = ';' // OS-specific path list separator
)
// IsPathSeparator returns true if c is a directory separator character.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment