aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/vcs/fuchsia.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/vcs/fuchsia.go')
-rw-r--r--pkg/vcs/fuchsia.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/vcs/fuchsia.go b/pkg/vcs/fuchsia.go
index 2ad0e1878..704c0a9e6 100644
--- a/pkg/vcs/fuchsia.go
+++ b/pkg/vcs/fuchsia.go
@@ -107,3 +107,7 @@ func (ctx *fuchsia) MergeBases(firstCommit, secondCommit string) ([]*Commit, err
func (ctx *fuchsia) CommitExists(string) (bool, error) {
return false, fmt.Errorf("not implemented for fuchsia")
}
+
+func (ctx *fuchsia) PushCommit(repo, commit string) error {
+ return ctx.repo.PushCommit(repo, commit)
+}