Skip to content

Commit 9282152

Browse files
authored
fix(makefile): fixes atlas installation by using its own install script (#688)
Signed-off-by: Jose I. Paris <[email protected]>
1 parent ea0be40 commit 9282152

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

common.mk

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ VERSION=$(shell git describe --tags --always)
55
init: init-api-tools
66
go install github.com/google/wire/cmd/wire@latest
77
go install github.com/vektra/mockery/[email protected]
8-
go install ariga.io/atlas/cmd/[email protected]
8+
# using binary release for atlas, since ent schema handler is not included
9+
# in the community version anymore https://github.com/ariga/atlas/issues/2388#issuecomment-1864287189
10+
curl -sSf https://atlasgo.sh | sh -s -- -y
911

1012
# initialize API tooling
1113
.PHONY: init-api-tools

0 commit comments

Comments
 (0)