Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pkg/vcs: more not implemented for fuchsia #5424

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions pkg/vcs/fuchsia.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,19 @@ func (ctx *fuchsia) initRepo() error {
}

func (ctx *fuchsia) CheckoutBranch(repo, branch string) (*Commit, error) {
return nil, fmt.Errorf("not implemented for fuchsia")
return nil, fmt.Errorf("not implemented for fuchsia: CheckoutBranch")
}

func (ctx *fuchsia) CheckoutCommit(repo, commit string) (*Commit, error) {
return nil, fmt.Errorf("not implemented for fuchsia")
return nil, fmt.Errorf("not implemented for fuchsia: CheckoutCommit")
}

func (ctx *fuchsia) SwitchCommit(commit string) (*Commit, error) {
return nil, fmt.Errorf("not implemented for fuchsia")
return nil, fmt.Errorf("not implemented for fuchsia: SwitchCommit")
}

func (ctx *fuchsia) Commit(com string) (*Commit, error) {
return nil, fmt.Errorf("not implemented for fuchsia")
return nil, fmt.Errorf("not implemented for fuchsia: Commit")
}

func (ctx *fuchsia) GetCommitByTitle(title string) (*Commit, error) {
Expand All @@ -85,11 +85,11 @@ func (ctx *fuchsia) ExtractFixTagsFromCommits(baseCommit, email string) ([]*Comm
}

func (ctx *fuchsia) ReleaseTag(commit string) (string, error) {
return "", fmt.Errorf("not implemented for fuchsia")
return "", fmt.Errorf("not implemented for fuchsia: ReleaseTag")
}

func (ctx *fuchsia) Contains(commit string) (bool, error) {
return false, fmt.Errorf("not implemented for fuchsia")
return false, fmt.Errorf("not implemented for fuchsia: Contains")
}

func (ctx *fuchsia) ListCommitHashes(base string) ([]string, error) {
Expand All @@ -105,9 +105,9 @@ func (ctx *fuchsia) MergeBases(firstCommit, secondCommit string) ([]*Commit, err
}

func (ctx *fuchsia) CommitExists(string) (bool, error) {
return false, fmt.Errorf("not implemented for fuchsia")
return false, fmt.Errorf("not implemented for fuchsia: CommitExists")
}

func (ctx *fuchsia) PushCommit(repo, commit string) error {
return ctx.repo.PushCommit(repo, commit)
return fmt.Errorf("not implemented for fuchsia: PushCommit")
}
Loading