Merge pull request #48 from justincormack/dir-fixes

Fix build in directory
This commit is contained in:
Justin Cormack 2017-05-26 15:28:18 +01:00 committed by GitHub
commit e8dc61e910

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)