From 5ab17889f45a4610723c7e15dc791b5532f375d3 Mon Sep 17 00:00:00 2001 From: Riccardo Di Dato Date: Sun, 16 Jul 2023 11:20:21 +0200 Subject: [PATCH] minor --- scripts/aws-login.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/aws-login.sh b/scripts/aws-login.sh index 2324fb3..3e8926a 100755 --- a/scripts/aws-login.sh +++ b/scripts/aws-login.sh @@ -7,5 +7,5 @@ IS_V2=`aws --version | grep -P "^aws-cli/2" | wc -l` if [[ $IS_V2 -eq "1" ]]; then aws ecr get-login-password --region eu-west-1 --profile personal | docker login --username AWS --password-stdin 299952237278.dkr.ecr.eu-west-1.amazonaws.com else - $(aws ecr get-login --no-include-email --profile personal) + $(aws ecr get-login --no-include-email --region eu-west-1 --profile personal) fi