]> Cypherpunks repositories - gostls13.git/commit
go/build: use os.MkdirAll to create directories
authorAlex Brainman <alex.brainman@gmail.com>
Mon, 11 Jul 2011 05:40:41 +0000 (15:40 +1000)
committerAlex Brainman <alex.brainman@gmail.com>
Mon, 11 Jul 2011 05:40:41 +0000 (15:40 +1000)
commit3c6a7b3fc50a391f939308b522ac79e6ac79990b
tree6717f6083b6b5475f8361743b6852557254bdebc
parent7b79b3b2443a51e0b1853eae99d0de8e30f1b540
go/build: use os.MkdirAll to create directories

Replaces "mkdir -p ..." command, as Windows mkdir command
does not support -p flag. Also, is simpler and faster then
launching new process.

R=golang-dev, mattn.jp, adg, bradfitz, rsc
CC=golang-dev
https://golang.org/cl/4626087
src/pkg/go/build/build.go