Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
cmd: fix bad errorf for push
Browse files Browse the repository at this point in the history
  • Loading branch information
aavshr committed Sep 15, 2023
1 parent 244f319 commit 2e311e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/push.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ func push(projectID, projectDir, pushTag string, openInBrowser, skipLogs, experi
// check build status
b, err := utils.Client.GetBuild(&api.GetBuildRequest{BuildID: build.ID})
if err != nil {
return fmt.Errorf("%s failed to check if push succeded, please check %s if a new revision was created successfully", styles.Codef("%s/%s/develop", utils.BuilderUrl, projectID))
return fmt.Errorf("failed to check if push succeded, please check %s if a new revision was created successfully", styles.Codef("%s/%s/develop", utils.BuilderUrl, projectID))
}
if b.Status != api.Complete {
return fmt.Errorf("failed to push code and create a revision, please try again")
Expand Down

0 comments on commit 2e311e3

Please sign in to comment.