From 240ee6b318fff9c087aa7d9f6f77de31fead7839 Mon Sep 17 00:00:00 2001 From: Guillaume de Rouville Date: Thu, 23 Sep 2021 00:14:00 +0200 Subject: [PATCH] fix ecr typo on localMode Signed-off-by: Guillaume de Rouville --- stdlib/aws/ecr/tests/ecr.cue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stdlib/aws/ecr/tests/ecr.cue b/stdlib/aws/ecr/tests/ecr.cue index d9b99c45..e6f61846 100644 --- a/stdlib/aws/ecr/tests/ecr.cue +++ b/stdlib/aws/ecr/tests/ecr.cue @@ -18,10 +18,10 @@ TestECR: { } repository: string - if localMode == null { + if localMode == false { repository: "125635003186.dkr.ecr.\(TestConfig.awsConfig.region).amazonaws.com/dagger-ci" } - if localMode != null { + if localMode == true { repository: "localhost:4510/dagger-ci" } tag: "test-ecr-\(suffix.out)"