From 61a2b183d3013c00febd7e0e3beb7ef07c1cd0f1 Mon Sep 17 00:00:00 2001 From: TehBrian <32250137+TehBrian@users.noreply.github.com> Date: Mon, 10 Aug 2026 12:42:56 -0400 Subject: [PATCH] fix(installer): minor grammatical error (#9209) --- other/nightly/install.sh | 2 +- scripts/install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/other/nightly/install.sh b/other/nightly/install.sh index 365e4c330..595dac2a5 100755 --- a/other/nightly/install.sh +++ b/other/nightly/install.sh @@ -834,7 +834,7 @@ update_env_var() { # If variable "key=" doesn't exist, append it to the file with value elif ! grep -q "^${key}=" "$ENV_FILE"; then printf '%s=%s\n' "$key" "$value" >>"$ENV_FILE" - echo " - Added ${key} and it's value as the variable was missing" + echo " - Added ${key} and its value as the variable was missing" fi } diff --git a/scripts/install.sh b/scripts/install.sh index 7569efcc8..1773f37f1 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -834,7 +834,7 @@ update_env_var() { # If variable "key=" doesn't exist, append it to the file with value elif ! grep -q "^${key}=" "$ENV_FILE"; then printf '%s=%s\n' "$key" "$value" >>"$ENV_FILE" - echo " - Added ${key} and it's value as the variable was missing" + echo " - Added ${key} and its value as the variable was missing" fi }