Просмотр исходного кода

Fail if no png files have been produced

This indicates that something has gone wrong.  There should be at least
one.
Lucas Stadler лет назад: 8
Родитель
Сommit
ce382d162c
1 измененных файлов с 4 добавлено и 0 удалено
  1. 4 0
      go/archive/archive.go

+ 4 - 0
go/archive/archive.go

83
		exit("filepath.Glob", err)
83
		exit("filepath.Glob", err)
84
	}
84
	}
85
85
86
	if len(parts) == 0 {
87
		exit("filepath.Glob", fmt.Errorf("no matches"))
88
	}
89
86
	h := fmt.Sprintf(".archive/%x.html", buf)
90
	h := fmt.Sprintf(".archive/%x.html", buf)
87
	f, err = os.OpenFile(h, os.O_CREATE|os.O_EXCL|os.O_WRONLY, 0660)
91
	f, err = os.OpenFile(h, os.O_CREATE|os.O_EXCL|os.O_WRONLY, 0660)
88
	if err != nil {
92
	if err != nil {