MCPcopy Create free account
hub / github.com/golang/appengine / deploy

Function deploy

cmd/aedeploy/aedeploy.go:64–72  ·  view source on GitHub ↗

deploy calls the provided command to deploy the app from the temporary directory.

()

Source from the content-addressed store, hash-verified

62
63// deploy calls the provided command to deploy the app from the temporary directory.
64func deploy() error {
65 vlogf("Running command %v", flag.Args())
66 cmd := exec.Command(flag.Arg(0), flag.Args()[1:]...)
67 cmd.Stdin, cmd.Stdout, cmd.Stderr = os.Stdin, os.Stdout, os.Stderr
68 if err := cmd.Run(); err != nil {
69 return fmt.Errorf("unable to run %q: %v", strings.Join(flag.Args(), " "), err)
70 }
71 return nil
72}

Callers 1

mainFunction · 0.85

Calls 2

vlogfFunction · 0.85
RunMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…