Skip to content

Commit

Permalink
Update variable name +APPLE_SILICON in Makefiles
Browse files Browse the repository at this point in the history
  • Loading branch information
mgonnav committed Jan 31, 2024
1 parent e94cb94 commit cf51430
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion development-helps/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ REGISTRY_HOST = localhost:5001
API_POD = $$(kubectl get pod -l app=estela-django-api -o jsonpath="{.items[0].metadata.name}")
API_DOC = docs/api.yaml
PLATFORM ?= linux/$(shell uname -m)
APPLE_SILICON_LOCAL ?= $$(uname -m | grep -q 'arm64' && echo "true" || echo "false")
APPLE_SILICON ?= $$(uname -m | grep -q 'arm64' && echo "true" || echo "false")

.PHONY: start
start:
Expand Down
2 changes: 1 addition & 1 deletion installation/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ LOCAL_API_IP = $$(kubectl get services -n $${NAMESPACE} estela-django-api-servic
RESOURCES = db registry minio zookeeper kafka
SERVICES ?= django-api celery-worker celery-beat redis build-project
PLATFORM ?= linux/$(shell uname -m)
APPLE_SILICON_LOCAL ?= $$(uname -m | grep -q 'arm64' && echo "true" || echo "false")
APPLE_SILICON ?= $$(uname -m | grep -q 'arm64' && echo "true" || echo "false")


.PHONY: resources
Expand Down

0 comments on commit cf51430

Please sign in to comment.