Skip to content

Commit 59f9af2

Browse files
committed
chore(JSONSchema): prepare v1 compatibility
1 parent bd4d007 commit 59f9af2

File tree

1 file changed

+26
-10
lines changed
  • scripts/website/copy_jsonschema

1 file changed

+26
-10
lines changed

scripts/website/copy_jsonschema/main.go

+26-10
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,17 @@ func copySchemas() error {
3232
return fmt.Errorf("copy FS: %w", err)
3333
}
3434

35+
err = copyLatestSchema()
36+
if err != nil {
37+
return fmt.Errorf("copy files: %w", err)
38+
}
39+
40+
return nil
41+
}
42+
43+
func copyLatestSchema() error {
44+
src := filepath.FromSlash("jsonschema/golangci.jsonschema.json")
45+
3546
latest, err := github.GetLatestVersion()
3647
if err != nil {
3748
return fmt.Errorf("get latest release version: %w", err)
@@ -42,17 +53,11 @@ func copySchemas() error {
4253
return fmt.Errorf("parse version: %w", err)
4354
}
4455

45-
versioned := fmt.Sprintf("golangci.v%d.%d.jsonschema.json", version.Segments()[0], version.Segments()[1])
46-
47-
err = copyFile(filepath.FromSlash("jsonschema/golangci.jsonschema.json"), filepath.Join(dstDir, versioned))
48-
if err != nil {
49-
return fmt.Errorf("copy files: %w", err)
56+
files := []string{
57+
fmt.Sprintf("golangci.v%d.jsonschema.json", version.Segments()[0]),
58+
fmt.Sprintf("golangci.v%d.%d.jsonschema.json", version.Segments()[0], version.Segments()[1]),
5059
}
5160

52-
return nil
53-
}
54-
55-
func copyFile(src, dst string) error {
5661
source, err := os.Open(src)
5762
if err != nil {
5863
return fmt.Errorf("open file %s: %w", src, err)
@@ -65,6 +70,17 @@ func copyFile(src, dst string) error {
6570
return fmt.Errorf("file %s not found: %w", src, err)
6671
}
6772

73+
for _, dst := range files {
74+
err = copyFile(dst, source, info)
75+
if err != nil {
76+
return fmt.Errorf("copy file %s to %s: %w", src, dst, err)
77+
}
78+
}
79+
80+
return nil
81+
}
82+
83+
func copyFile(dst string, source io.Reader, info os.FileInfo) error {
6884
destination, err := os.OpenFile(dst, os.O_RDWR|os.O_CREATE|os.O_TRUNC, info.Mode())
6985
if err != nil {
7086
return fmt.Errorf("create file %s: %w", dst, err)
@@ -74,7 +90,7 @@ func copyFile(src, dst string) error {
7490

7591
_, err = io.Copy(destination, source)
7692
if err != nil {
77-
return fmt.Errorf("copy file %s to %s: %w", src, dst, err)
93+
return err
7894
}
7995

8096
return nil

0 commit comments

Comments
 (0)