From 13548fcaa2bdec0b11105a7a36d9b9aeee534cd3 Mon Sep 17 00:00:00 2001 From: James Nugent Date: Tue, 17 Nov 2015 14:43:36 +0000 Subject: [PATCH] Add `core-dev` target to Makefile This is shorthand to build and install the core of terraform, without touching the providers. --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index e53106307..fea0478cd 100644 --- a/Makefile +++ b/Makefile @@ -15,6 +15,12 @@ dev: generate quickdev: generate @TF_QUICKDEV=1 TF_DEV=1 sh -c "'$(CURDIR)/scripts/build.sh'" +# Shorthand for quickly building the core of Terraform. Note that some +# changes will require a rebuild of everything, in which case the dev +# target should be used. +core-dev: generate + go install github.com/hashicorp/terraform + # Shorthand for building and installing just one plugin for local testing. # Run as (for example): make plugin-dev PLUGIN=provider-aws plugin-dev: generate