Skip to content

Commit

Permalink
add go generate
Browse files Browse the repository at this point in the history
  • Loading branch information
algolucky committed Nov 15, 2022
1 parent 66f893c commit 36e61c2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions misc/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ def compile(path="cmd/algorand-indexer", goos=None, goarch=None, ldflags=None):
cmd = ["go", "build"]
if ldflags is not None:
cmd.append(ldflags)
subprocess.run(["go", "generate", "./..."], env=env).check_returncode()
subprocess.run(cmd, cwd=path, env=env).check_returncode()


Expand Down

0 comments on commit 36e61c2

Please sign in to comment.