| // Copyright 2015 The Go Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style |
| // license that can be found in the LICENSE file. |
| "golang.org/x/tools/dashboard/buildlet" |
| func run(args []string) error { |
| fs := flag.NewFlagSet("run", flag.ContinueOnError) |
| fmt.Fprintln(os.Stderr, "create usage: gomote run [run-opts] <instance> <cmd> [args...]") |
| fs.BoolVar(&sys, "system", false, "run inside the system, and not inside the workdir; this is implicit if cmd starts with '/'") |
| name, cmd := fs.Arg(0), fs.Arg(1) |
| bc, err := namedClient(name) |
| remoteErr, execErr := bc.Exec(cmd, buildlet.ExecOpts{ |
| SystemLevel: sys || strings.HasPrefix(cmd, "/"), |
| return fmt.Errorf("Error trying to execute %s: %v", cmd, execErr) |