Skip to content
This repository was archived by the owner on Oct 5, 2020. It is now read-only.

Commit 2eb3ed0

Browse files
authored
Merge pull request #175 from rebuy-de/improve-error-message
improve error message
2 parents fa0f95e + b99ddbb commit 2eb3ed0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/api/apply.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ func checkForArgoApp(project string) (bool, error) {
3434
return false, nil
3535
}
3636

37-
return true, errors.New(fmt.Sprintf("Found argo app '%s', abort deployment", project))
37+
return true, errors.New(fmt.Sprintf("Project is managed by ArgoCD. Please deploy with `/kubot-deploy %s`.", project))
3838
}
3939

4040
func (app *App) Apply(project, branchName string) error {

0 commit comments

Comments
 (0)