From 68ce63c46891becd752fa1c0a0c3caaa98117832 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 28 Jun 2018 12:32:30 +0200 Subject: pkg/build: support fuchsia builds --- pkg/vcs/fuchsia.go | 5 ----- 1 file changed, 5 deletions(-) (limited to 'pkg/vcs') diff --git a/pkg/vcs/fuchsia.go b/pkg/vcs/fuchsia.go index b8462f5ad..7b8e7335b 100644 --- a/pkg/vcs/fuchsia.go +++ b/pkg/vcs/fuchsia.go @@ -26,11 +26,6 @@ func newFuchsia(vm, dir string) *fuchsia { } } -// mkdir DIR; cd DIR -// curl -s "https://fuchsia.googlesource.com/scripts/+/master/bootstrap?format=TEXT" | base64 --decode | bash -s topaz -// (cd fuchsia && .jiri_root/bin/jiri update) -// (cd fuchsia/zircon/ && git show HEAD) - func (fu *fuchsia) Poll(repo, branch string) (*Commit, error) { if repo != "https://fuchsia.googlesource.com" || branch != "master" { // fuchsia ecosystem is hard-tailored to the main repo. -- cgit mrf-deployment