Fix issue with pack option on ubuntu

This commit is contained in:
Bill Davis 2014-10-28 15:30:53 -04:00
parent acef56f158
commit d83ddc6b52
1 changed files with 2 additions and 3 deletions

View File

@ -516,7 +516,6 @@ func packApp(cmd *Command, args []string) int {
str := strconv.FormatInt(time.Now().UnixNano(), 10)[9:]
gobin := path.Join(runtime.GOROOT(), "bin", "go")
tmpdir := path.Join(os.TempDir(), "beePack-"+str)
os.Mkdir(tmpdir, 0700)
@ -558,10 +557,10 @@ func packApp(cmd *Command, args []string) int {
}
if verbose {
fmt.Println(gobin, " ", strings.Join(args, " "))
fmt.Println("go ", strings.Join(args, " "))
}
execmd := exec.Command(gobin, args...)
execmd := exec.Command("go", args...)
execmd.Env = append(os.Environ(), envs...)
execmd.Stdout = os.Stdout
execmd.Stderr = os.Stderr