Skip to content
This repository has been archived by the owner on Jun 3, 2024. It is now read-only.

Commit

Permalink
[SYM-4980] Enable make local in terraform-provider-sym to work on…
Browse files Browse the repository at this point in the history
… M1 laptops (#162)
  • Loading branch information
Anupya authored Aug 21, 2023
1 parent 648d561 commit 59e42e6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ NAMESPACE=com
NAME=sym
BINARY=terraform-provider-${NAME}
VERSION?=0.0.1
OS_ARCH?=darwin_amd64
OS_ARCH=darwin_amd64
ifeq ($(shell uname -m), arm64)
OS_ARCH=darwin_arm64
endif
PLUGIN_DIR=~/.terraform.d/plugins/terraform.${HOSTNAME}/symopsio/${NAME}/${VERSION}/${OS_ARCH}

default: build
Expand Down

0 comments on commit 59e42e6

Please sign in to comment.