diff --git a/internal/argocd/revision.go b/internal/argocd/revision.go index 24ed8e7c3..1083936b7 100644 --- a/internal/argocd/revision.go +++ b/internal/argocd/revision.go @@ -73,8 +73,8 @@ func GetDesiredRevisionFromSource( } } case s.RepoURL != "": - // This source points to a Git repository. - sourceLogger.Debug("Application source is a Helm chart, without a chart name", "repoURL", s.RepoURL, "path", s.Path) + // This source points to a directory in a Git repository. + sourceLogger.Debug("Application source is a Git repository", "repoURL", s.RepoURL, "path", s.Path) sourceGitRepoURL := git.NormalizeURL(s.RepoURL) for _, commit := range freight.Commits { if git.NormalizeURL(commit.RepoURL) != sourceGitRepoURL {