Commit 3adbd096 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

builder/amazon/chroot: fix compile error

parent f94203c2
...@@ -92,7 +92,7 @@ func (c *Communicator) UploadDir(dst string, src string, exclude []string) error ...@@ -92,7 +92,7 @@ func (c *Communicator) UploadDir(dst string, src string, exclude []string) error
cmd.Env = append(cmd.Env, os.Environ()...) cmd.Env = append(cmd.Env, os.Environ()...)
cmd.Env = append(cmd.Env, "LANG=C") cmd.Env = append(cmd.Env, "LANG=C")
cmd.Stderr = &stderr cmd.Stderr = &stderr
err := cmd.Run() err = cmd.Run()
if err == nil { if err == nil {
return err return err
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment