diff --git a/.tfdev b/.tfdev index a04d5c102..857b02d99 100644 --- a/.tfdev +++ b/.tfdev @@ -1,5 +1,4 @@ version_info { - commit_var = "main.GitCommit" version_var = "github.com/hashicorp/terraform/version.Version" prerelease_var = "github.com/hashicorp/terraform/version.Prerelease" } diff --git a/command/version.go b/command/version.go index f37feac06..27dbbff43 100644 --- a/command/version.go +++ b/command/version.go @@ -16,7 +16,6 @@ import ( type VersionCommand struct { Meta - Revision string Version string VersionPrerelease string CheckFunc VersionCheckFunc @@ -25,7 +24,6 @@ type VersionCommand struct { type VersionOutput struct { Version string `json:"terraform_version"` - Revision string `json:"terraform_revision"` Platform string `json:"platform"` ProviderSelections map[string]string `json:"provider_selections"` Outdated bool `json:"terraform_outdated"` @@ -80,10 +78,6 @@ func (c *VersionCommand) Run(args []string) int { fmt.Fprintf(&versionString, "Terraform v%s", c.Version) if c.VersionPrerelease != "" { fmt.Fprintf(&versionString, "-%s", c.VersionPrerelease) - - if c.Revision != "" { - fmt.Fprintf(&versionString, " (%s)", c.Revision) - } } // We'll also attempt to print out the selected plugin versions. We do @@ -139,7 +133,6 @@ func (c *VersionCommand) Run(args []string) int { output := VersionOutput{ Version: versionOutput, - Revision: c.Revision, Platform: c.Platform.String(), ProviderSelections: selectionsOutput, Outdated: outdated, diff --git a/command/version_test.go b/command/version_test.go index b0dcf892a..10f384c45 100644 --- a/command/version_test.go +++ b/command/version_test.go @@ -142,7 +142,6 @@ func TestVersion_json(t *testing.T) { expected := strings.TrimSpace(` { "terraform_version": "4.5.6", - "terraform_revision": "", "platform": "aros_riscv64", "provider_selections": {}, "terraform_outdated": false @@ -190,7 +189,6 @@ func TestVersion_json(t *testing.T) { expected = strings.TrimSpace(` { "terraform_version": "4.5.6-foo", - "terraform_revision": "", "platform": "aros_riscv64", "provider_selections": { "registry.terraform.io/hashicorp/test1": "7.8.9-beta.2", @@ -223,7 +221,7 @@ func TestVersion_jsonoutdated(t *testing.T) { } actual := strings.TrimSpace(ui.OutputWriter.String()) - expected := "{\n \"terraform_version\": \"4.5.6\",\n \"terraform_revision\": \"\",\n \"platform\": \"aros_riscv64\",\n \"provider_selections\": {},\n \"terraform_outdated\": true\n}" + expected := "{\n \"terraform_version\": \"4.5.6\",\n \"platform\": \"aros_riscv64\",\n \"provider_selections\": {},\n \"terraform_outdated\": true\n}" if actual != expected { t.Fatalf("wrong output\ngot: %#v\nwant: %#v", actual, expected) } diff --git a/commands.go b/commands.go index d726e8ae0..5b627e2dc 100644 --- a/commands.go +++ b/commands.go @@ -270,7 +270,6 @@ func initCommands( "version": func() (cli.Command, error) { return &command.VersionCommand{ Meta: meta, - Revision: GitCommit, Version: Version, VersionPrerelease: VersionPrerelease, Platform: getproviders.CurrentPlatform, diff --git a/main.go b/main.go index 0b7f9c1d4..03a7ff663 100644 --- a/main.go +++ b/main.go @@ -117,8 +117,8 @@ func wrappedMain() int { } log.Printf( - "[INFO] Terraform version: %s %s %s", - Version, VersionPrerelease, GitCommit) + "[INFO] Terraform version: %s %s", + Version, VersionPrerelease) log.Printf("[INFO] Go runtime version: %s", runtime.Version()) log.Printf("[INFO] CLI args: %#v", os.Args) diff --git a/scripts/build.sh b/scripts/build.sh index ef5c1c2e3..98b2410f1 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -10,10 +10,6 @@ DIR="$( cd -P "$( dirname "$SOURCE" )/.." && pwd )" # Change into that directory cd "$DIR" -# Get the git commit -GIT_COMMIT=$(git rev-parse HEAD) -GIT_DIRTY=$(test -n "`git status --porcelain`" && echo "+CHANGES" || true) - # Determine the arch/os combos we're building for XC_ARCH=${XC_ARCH:-"386 amd64 arm"} XC_OS=${XC_OS:-linux darwin windows freebsd openbsd solaris} @@ -29,9 +25,6 @@ mkdir -p bin/ if [[ -n "${TF_DEV}" ]]; then XC_OS=$(go env GOOS) XC_ARCH=$(go env GOARCH) - - # Allow LD_FLAGS to be appended during development compilations - LD_FLAGS="-X main.GitCommit=${GIT_COMMIT}${GIT_DIRTY} $LD_FLAGS" fi if ! which gox > /dev/null; then diff --git a/version.go b/version.go index 36d16cb28..a54331647 100644 --- a/version.go +++ b/version.go @@ -4,9 +4,6 @@ import ( "github.com/hashicorp/terraform/version" ) -// The git commit that was compiled. This will be filled in by the compiler. -var GitCommit string - var Version = version.Version var VersionPrerelease = version.Prerelease