From 2a88b13422b06817ff36462dc0f72eba55efa899 Mon Sep 17 00:00:00 2001 From: Daniel Isaac Khan Ramiro Date: Sun, 7 Oct 2018 16:05:59 -0700 Subject: [PATCH] move LATEST_RELEASE_VERSION to the top so it's easier to spot --- scripts/install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index 960954f2c..1e740414c 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -1,5 +1,8 @@ #!/usr/bin/env bash +# installation variables +LATEST_RELEASE_VERSION=0.3.0 + # # Installation script to download and install terraform-provider-openapi # @@ -57,9 +60,6 @@ fi # used to determine which architecture to install ARCH=$(uname) -# installation variables -LATEST_RELEASE_VERSION=0.3.0 - TF_PROVIDER_BASE_NAME="terraform-provider-" TF_OPENAPI_PROVIDER_PLUGIN_NAME="${TF_PROVIDER_BASE_NAME}openapi" TF_PROVIDER_PLUGIN_NAME="${TF_PROVIDER_BASE_NAME}${PROVIDER_NAME}"