From 001c5a8aad125a6fbc3118e3922393a98e809825 Mon Sep 17 00:00:00 2001 From: kaswhy Date: Thu, 14 Nov 2024 02:02:20 +0900 Subject: [PATCH] =?UTF-8?q?fix(initialize):=20=EC=9D=B8=EC=BD=94=EB=94=A9?= =?UTF-8?q?=20=EC=84=A4=EC=A0=95=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 해당 사항 반영 --- scripts/initialize.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/initialize.sh b/scripts/initialize.sh index 8735a34..9a6487e 100644 --- a/scripts/initialize.sh +++ b/scripts/initialize.sh @@ -1,6 +1,6 @@ # Parameter Store에서 GitHub 자격 증명을 가져오기 -GH_USERNAME=$(aws ssm get-parameter --name "/github/username" --query "Parameter.Value" --output text) -GH_PAT=$(aws ssm get-parameter --name "/github/token" --query "Parameter.Value" --output text) +GH_USERNAME=$(aws ssm get-parameter --name "/github/username" --query "Parameter.Value" --output text | jq -sRr @uri) +GH_PAT=$(aws ssm get-parameter --name "/github/token" --query "Parameter.Value" --output text | jq -sRr @uri) # GitHub 자격 증명 파일 설정 echo "https://${GH_USERNAME}:${GH_PAT}@github.com" > ~/.git-credentials