From f19ed9ef8e491aa21ebda14623e4740baf8a88b7 Mon Sep 17 00:00:00 2001 From: vagrant-bot Date: Wed, 15 Mar 2023 13:45:23 -0700 Subject: [PATCH] Terraform managed file --- .ci/load-ci.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.ci/load-ci.sh b/.ci/load-ci.sh index e88f36574..b87fb0d11 100644 --- a/.ci/load-ci.sh +++ b/.ci/load-ci.sh @@ -1,12 +1,12 @@ #!/usr/bin/env bash # shellcheck disable=SC1091 -echo "🤖 Loading VagrantCI 🤖" +echo "🤖 Loading VagrantCI 🤖" >&2 csource="${BASH_SOURCE[0]}" while [ -h "$csource" ] ; do csource="$(readlink "$csource")"; done if ! root="$( cd -P "$( dirname "$csource" )/../" && pwd )"; then - echo "⛔ ERROR: Failed to determine root local directory ⛔" + echo "⛔ ERROR: Failed to determine root local directory ⛔" >&2 exit 1 fi @@ -14,10 +14,10 @@ export root export ci_bin_dir="${root}/.ci/.ci-utility-files" if ! source "${ci_bin_dir}/common.sh"; then - echo "⛔ ERROR: Failed to source Vagrant CI common file ⛔" + echo "⛔ ERROR: Failed to source Vagrant CI common file ⛔" >&2 exit 1 fi export PATH="${PATH}:${ci_bin_dir}" # And we are done! -echo "🎉 VagrantCI Loaded! 🎉" +echo "🎉 VagrantCI Loaded! 🎉" >&2