Skip to content
This repository was archived by the owner on Jun 28, 2022. It is now read-only.

Commit

Permalink
fix: repository update
Browse files Browse the repository at this point in the history
  • Loading branch information
arantespp committed Sep 16, 2021
1 parent 60b36fe commit 303344d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/cli/src/deploy/cicd/deployCicd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export const deployCicd = async ({
cpu,
memory,
pipelines,
repositoryUpdate,
updateRepository,
slackWebhookUrl,
sshKey,
sshUrl,
Expand All @@ -95,7 +95,7 @@ export const deployCicd = async ({
cpu?: string;
memory?: string;
pipelines: Pipeline[];
repositoryUpdate?: boolean;
updateRepository?: boolean;
slackWebhookUrl?: string;
sshKey: string;
sshUrl: string;
Expand Down Expand Up @@ -126,7 +126,7 @@ export const deployCicd = async ({
terminationProtection: true,
});

if (repositoryUpdate) {
if (updateRepository) {
await waitRepositoryImageUpdate({ stackName });
}
} catch (error: any) {
Expand Down

0 comments on commit 303344d

Please sign in to comment.