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

[SYM-4980] Enable make local in terraform-provider-sym to work on M1 laptops #162

Merged
merged 1 commit into from
Aug 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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