Home | History | Annotate | Download | only in controllers

Lines Matching refs:Cmd

60 	cmd := exec.Command(
69 cmd.Dir = workingDirectory
70 if _, err := cmd.Output(); err != nil {
99 func setupCommand(pyScript string, config ent.ApplicationConfig, target ent.DiffTarget) *exec.Cmd {
100 cmd := exec.Command(
112 cmd.Dir = config.OutputDirectory
113 return cmd
136 cmd := setupCommand(pyScript, config, target)
138 displayStr := strings.Join(cmd.Args, " ")
142 cmd.Run(),