filebrowser/staticgen/staticgen.go

20 lines
340 B
Go
Raw Normal View History

2017-10-30 15:24:06 +00:00
package staticgen
import (
"errors"
"os/exec"
)
// runCommand executes an external command
func runCommand(command string, args []string, path string) error {
cmd := exec.Command(command, args...)
cmd.Dir = path
out, err := cmd.CombinedOutput()
if err != nil {
return errors.New(string(out))
}
return nil
}