aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/vcs
diff options
context:
space:
mode:
authorJulia Hansbrough <flowerhack@google.com>2019-02-27 21:44:58 -0800
committerGreg Steuck <blackgnezdo@gmail.com>2019-02-27 21:44:58 -0800
commit09aeeba49f9105ef18e4e1bd136492a57b7e7b6b (patch)
tree0518391c597342d5b58ca59383432cb4c507ff3b /pkg/vcs
parent34ec456bcf7c51fadfa01804ab33bdb22db8bf8f (diff)
fuchsia: Update Syzkaller to pull from Fuchsia monorepo (#1021)
Fuchsia and its repos now live in a new spot!
Diffstat (limited to 'pkg/vcs')
-rw-r--r--pkg/vcs/fuchsia.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/vcs/fuchsia.go b/pkg/vcs/fuchsia.go
index 04d8e5d36..07626cd5e 100644
--- a/pkg/vcs/fuchsia.go
+++ b/pkg/vcs/fuchsia.go
@@ -51,8 +51,8 @@ func (ctx *fuchsia) initRepo() error {
if err := osutil.SandboxChown(tmpDir); err != nil {
return err
}
- cmd := "curl -s 'https://fuchsia.googlesource.com/scripts/+/master/bootstrap?format=TEXT' |" +
- "base64 --decode | bash -s garnet"
+ cmd := "curl -s 'https://fuchsia.googlesource.com/fuchsia/+/master/scripts/bootstrap?format=TEXT' |" +
+ "base64 --decode | bash"
if _, err := runSandboxed(tmpDir, "bash", "-c", cmd); err != nil {
return err
}