commit | c7b02cb52399d60b989f5915354601662797e202 | [log] [tgz] |
---|---|---|
author | David Srbecky <dsrbecky@google.com> | Mon Apr 06 21:38:16 2020 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Mon Apr 06 21:38:16 2020 +0000 |
tree | 6b8e68d5451661e1dd861693ef39092f84b1beb6 | |
parent | 0ccd73a8dfe035afda5589df623f0131ddcd33ce [diff] | |
parent | 0f6fdf5544046f99eb923f0e974b3fdd8f10ca1a [diff] |
Merge "Fix dex-location for host."
diff --git a/cmd/zipsync/zipsync.go b/cmd/zipsync/zipsync.go index a6023d3..294e5ef 100644 --- a/cmd/zipsync/zipsync.go +++ b/cmd/zipsync/zipsync.go
@@ -115,7 +115,7 @@ filename := filepath.Join(*outputDir, name) if f.FileInfo().IsDir() { - must(os.MkdirAll(filename, f.FileInfo().Mode())) + must(os.MkdirAll(filename, 0777)) } else { must(os.MkdirAll(filepath.Dir(filename), 0777)) in, err := f.Open()