From 7c72d97d391577a975a3825bb240e336959a9452 Mon Sep 17 00:00:00 2001 From: Shelley Nason Date: Tue, 3 Feb 2026 09:16:14 -0500 Subject: [PATCH] Replace ruby command in deploy script with bash tools. --- .circleci/sync-login-gov-env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/sync-login-gov-env.sh b/.circleci/sync-login-gov-env.sh index e869bc618..116afab31 100755 --- a/.circleci/sync-login-gov-env.sh +++ b/.circleci/sync-login-gov-env.sh @@ -11,7 +11,7 @@ require_env() { } escape_private_key() { - ruby -e 'print STDIN.read.gsub("\r\n", "\n").gsub("\n", "\\n")' + tr -d '\r' | sed 's/\n/\\n/g' } sync_login_gov_env() {