File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ WEBSITE_REPO=github.com/hashicorp/terraform-website
44PKG_NAME =sumologic
55PLUGIN_DIR =~/.terraform.d/plugins
66UNAME =$(shell uname -m)
7+ DEBUG_FLAGS=-gcflags="all =-N -l"
78
89default : build
910
@@ -22,9 +23,9 @@ install: fmtcheck
2223install-dev : fmtcheck
2324 mkdir -vp $(PLUGIN_DIR )
2425ifeq ($(UNAME ) , arm64)
25- go build -o $(PLUGIN_DIR)/sumologic.com/dev/sumologic/1.0.0/darwin_arm64/terraform-provider-sumologic
26+ go build ${DEBUG_FLAGS} -o $(PLUGIN_DIR)/sumologic.com/dev/sumologic/1.0.0/darwin_arm64/terraform-provider-sumologic
2627else
27- go build -o $(PLUGIN_DIR)/sumologic.com/dev/sumologic/1.0.0/darwin_amd64/terraform-provider-sumologic
28+ go build ${DEBUG_FLAGS} -o $(PLUGIN_DIR)/sumologic.com/dev/sumologic/1.0.0/darwin_amd64/terraform-provider-sumologic
2829endif
2930
3031uninstall :
You can’t perform that action at this time.
0 commit comments