Skip to content

Commit 9c2f856

Browse files
committed
packaging was tagging enterprise and community the same
1 parent 84425d9 commit 9c2f856

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

Makefile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,15 @@ build: tmp/.image-id-community tmp/.image-id-enterprise
3434
package: package-community package-enterprise
3535
.PHONY: package
3636

37-
package-%: tmp/.image-id-% out/%/.sentinel
37+
package-community: tmp/.image-id-community out/community/.sentinel
3838
> mkdir -p out
3939
> docker tag $$(cat $<) neo4j:$(NEO4J_VERSION)
40-
> docker save neo4j:$(NEO4J_VERSION) > out/neo4j-$*-$(NEO4J_VERSION)-docker-loadable.tar
40+
> docker save neo4j:$(NEO4J_VERSION) > out/neo4j-community-$(NEO4J_VERSION)-docker-loadable.tar
41+
42+
package-enterprise: tmp/.image-id-enterprise out/enterprise/.sentinel
43+
> mkdir -p out
44+
> docker tag $$(cat $<) neo4j:$(NEO4J_VERSION)
45+
> docker save neo4j:$(NEO4J_VERSION)-enterprise > out/neo4j-enterprise-$(NEO4J_VERSION)-docker-loadable.tar
4146

4247
out/%/.sentinel: tmp/image-%/.sentinel
4348
> mkdir -p $(@D)

0 commit comments

Comments
 (0)