From e9f92fc1f44d0a490521eb08a361abe066a1617a Mon Sep 17 00:00:00 2001 From: Narthana Epa Date: Mon, 31 Jul 2023 16:09:09 +1000 Subject: [PATCH] Fix a typo Co-authored-by: Michael Belton <119824349+mbelton-buildkite@users.noreply.github.com> --- pages/agent/v3/securing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/agent/v3/securing.md b/pages/agent/v3/securing.md index 1c6a4bc4e5..d2951c7d16 100644 --- a/pages/agent/v3/securing.md +++ b/pages/agent/v3/securing.md @@ -111,7 +111,7 @@ set -euo pipefail if grep '^ENVIRONMENT_VARIABLE_TO_DENY=' "$BUILDKITE_ENV_FILE" > /dev/null then - echo "Rejecting job because it the environment variable ENVIRONMENT_VARIABLE_TO_DENY has been set" + echo "Rejecting job because the environment variable ENVIRONMENT_VARIABLE_TO_DENY has been set" exit 1 fi ```