Skip to content

Commit 74e4bd8

Browse files
committed
Fix permission problems while unzipping
1 parent 6a65d44 commit 74e4bd8

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/arduino.cc/builder/sketch_loader.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ func (s *SketchLoader) Run(ctx *types.Context) error {
6969
dir, _ := ioutil.TempDir("", "arduino_sketch_zip_temp")
7070
sketchLocation, err = utils.ExtractZip(sketchLocation, dir)
7171
if err != nil {
72-
return nil
72+
panic(err)
7373
}
7474
mainSketchFileName := filepath.Base(sketchLocation) + ".ino"
7575
sketchLocation = filepath.Join(sketchLocation, mainSketchFileName)

src/arduino.cc/builder/utils/utils.go

+5-2
Original file line numberDiff line numberDiff line change
@@ -486,9 +486,12 @@ func ExtractZip(filePath string, location string) (string, error) {
486486
for _, f := range r.File {
487487
fullname := filepath.Join(location, strings.Replace(f.Name, "", "", -1))
488488
if f.FileInfo().IsDir() {
489-
os.MkdirAll(fullname, f.FileInfo().Mode().Perm())
489+
os.MkdirAll(fullname, 0755)
490490
} else {
491-
os.MkdirAll(filepath.Dir(fullname), 0755)
491+
_, err := os.Stat(filepath.Dir(fullname))
492+
if err != nil {
493+
os.MkdirAll(filepath.Dir(fullname), 0755)
494+
}
492495
perms := f.FileInfo().Mode().Perm()
493496
out, err := os.OpenFile(fullname, os.O_CREATE|os.O_RDWR, perms)
494497
if err != nil {

0 commit comments

Comments
 (0)