Skip to content

Commit

Permalink
Fix artifacts output name
Browse files Browse the repository at this point in the history
  • Loading branch information
ImTei committed Aug 2, 2024
1 parent ecbbd9a commit d17f823
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion validation/generate-genesis/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func main() {
}
}

err = os.WriteFile(path.Join(dirPath, chain.Superchain+"-"+chain.Name+".json"), j, os.FileMode(0o644))
err = os.WriteFile(path.Join(dirPath, chain.Name+"-"+chain.Superchain+".json"), j, os.FileMode(0o644))
if err != nil {
panic(err)
}
Expand Down
2 changes: 1 addition & 1 deletion validation/generate-rollup-config/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func main() {
}
}

err = os.WriteFile(path.Join(dirPath, chain.Superchain+"-"+chain.Name+".json"), j, os.FileMode(0o644))
err = os.WriteFile(path.Join(dirPath, chain.Name+"-"+chain.Superchain+".json"), j, os.FileMode(0o644))
if err != nil {
panic(err)
}
Expand Down

0 comments on commit d17f823

Please sign in to comment.