Fix build in directory

Remove unnecessary argument to buildInternal function, does not need to know the name.

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
This commit is contained in:
Justin Cormack 2017-05-26 15:22:12 +01:00
parent 2cd3a5b141
commit b8cdb985fd

View File

@ -99,10 +99,10 @@ func build(args []string) {
log.Fatalf("Invalid config: %v", err)
}
image := buildInternal(m, filepath.Join(*buildDir, name), *buildPull)
image := buildInternal(m, *buildPull)
log.Infof("Create outputs:")
err = outputs(name, image, buildOut)
err = outputs(filepath.Join(*buildDir, name), image, buildOut)
if err != nil {
log.Fatalf("Error writing outputs: %v", err)
}
@ -156,7 +156,7 @@ func enforceContentTrust(fullImageName string, config *TrustConfig) bool {
// Perform the actual build process
// TODO return error not panic
func buildInternal(m Moby, name string, pull bool) []byte {
func buildInternal(m Moby, pull bool) []byte {
w := new(bytes.Buffer)
iw := tar.NewWriter(w)