Commit b8732215 authored by Rob Pike's avatar Rob Pike

fix build

R=gri,rsc
OCL=32748
CL=32748
parent 5b1fb143
......@@ -265,14 +265,14 @@ func SourceFiles(dir string) ([]string, os.Error) {
}
func MkdirAll(name string) {
err := path.MkdirAll(name);
err := os.MkdirAll(name, 0755);
if err != nil {
fatal("MkdirAll: %v", err);
}
}
func RemoveAll(name string) {
err := path.RemoveAll(name);
err := os.RemoveAll(name);
if err != nil {
fatal("RemoveAll: %v", err);
}
......
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