From cf20e41b826ce7ad8ccf0668503847e8a9599d47 Mon Sep 17 00:00:00 2001 From: Adrien le Maire Date: Tue, 12 Jan 2021 10:34:19 +0000 Subject: [PATCH] Update pleroma/Makefile --- pleroma/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pleroma/Makefile b/pleroma/Makefile index f6285a1..7cd5f9c 100644 --- a/pleroma/Makefile +++ b/pleroma/Makefile @@ -4,9 +4,9 @@ include version IMAGE=pleroma push: - wget https://git.pleroma.social/pleroma/pleroma/-/archive/$(VERSION)/pleroma-$(VERSION).tar.bz2 - tar -xf pleroma-$(VERSION).tar.bz2 - cd pleroma-$(VERSION) + wget https://git.pleroma.social/pleroma/pleroma/-/archive/$(VERSION)/pleroma-$(VERSION).tar.bz2 && \ + tar -xf pleroma-$(VERSION).tar.bz2 && \ + cd pleroma-$(VERSION) && \ docker buildx build --platform linux/amd64,linux/arm64,linux/arm --push \ --build-arg OAUTH_CONSUMER_STRATEGIES="twitter facebook google microsoft keycloak:ueberauth_keycloak_strategy" \ --cache-from=type=registry,ref=${NAMESPACE}/buildx:${IMAGE} \