aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2019-06-09 18:27:19 -0300
committerEuAndreh <eu@euandre.org>2019-06-09 18:27:19 -0300
commitfe6dc895c80994912d50ea4d61d0e915b8ecb89a (patch)
treec4ffa148576f542b74e38dfff0b823504457a2ab
parentUse same NIX_PATH locally and on the CI (diff)
downloadtoph-fe6dc895c80994912d50ea4d61d0e915b8ecb89a.tar.gz
toph-fe6dc895c80994912d50ea4d61d0e915b8ecb89a.tar.xz
Quote $() call (ShellCheck offense)
-rwxr-xr-xscripts/ci/provision.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ci/provision.sh b/scripts/ci/provision.sh
index 498aaa9..b0e381c 100755
--- a/scripts/ci/provision.sh
+++ b/scripts/ci/provision.sh
@@ -30,7 +30,7 @@ echo "Done."
echo "Initializing Terraform..."
TF_PLUGINS_DIR='terraform.d/plugins/linux_amd64/'
mkdir -p "${TF_PLUGINS_DIR}"
-ln -s $(command -v terraform-provider-godaddy) "${TF_PLUGINS_DIR}/terraform-provider-goddady"
+ln -s "$(command -v terraform-provider-godaddy)" "${TF_PLUGINS_DIR}/terraform-provider-goddady"
terraform --version
terraform init
echo "Done."