aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/vcs
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/vcs')
-rw-r--r--pkg/vcs/fuchsia.go16
1 files changed, 8 insertions, 8 deletions
diff --git a/pkg/vcs/fuchsia.go b/pkg/vcs/fuchsia.go
index dd9a667b3..dfe4dc597 100644
--- a/pkg/vcs/fuchsia.go
+++ b/pkg/vcs/fuchsia.go
@@ -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) {
@@ -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) {
@@ -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")
}