Skip to content

Commit

Permalink
Fixing `make test container, as it breaks now with ARCH being used fo…
Browse files Browse the repository at this point in the history
…r pathing`
  • Loading branch information
vamage committed Oct 15, 2024
1 parent 533a5cb commit 19f111f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ IMAGE_TAG = $(REGISTRY)/$(IMAGENAME):$(IMAGE_VERSION)
test-container:
make
docker buildx build --pull --output=type=$(OUTPUT_TYPE) --platform="linux/$(ARCH)" \
-t $(IMAGE_TAG) --build-arg ARCH=$(ARCH) .
-t $(IMAGE_TAG) .

.PHONY: sanity-test
sanity-test:
Expand All @@ -45,4 +45,4 @@ mod-check:
.PHONY: clean
clean:
go clean -mod=vendor -r -x
-rm -rf bin
-rm -rf bin/

0 comments on commit 19f111f

Please sign in to comment.