Archetypes working :)

This commit is contained in:
Henrique Dias
2016-06-29 14:57:40 +01:00
parent 049bc2fe0f
commit 53c7ea422d
4 changed files with 121 additions and 36 deletions

View File

@@ -9,7 +9,7 @@ import (
func Run(command string, args []string, path string) error {
cmd := exec.Command(command, args...)
cmd.Dir = path
cmd.Stdout = os.Stderr
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
return cmd.Run()
}