Commit 7831e0c0 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

post-processor/vagrant: style nitpicks

/cc @rasa
parent 2b884d19
...@@ -53,22 +53,19 @@ func DirToBox(dst, dir string, ui packer.Ui, level int) error { ...@@ -53,22 +53,19 @@ func DirToBox(dst, dir string, ui packer.Ui, level int) error {
} }
defer dstF.Close() defer dstF.Close()
var tarOrGzipWriter io.Writer var dstWriter io.Writer = dstF
if level != flate.NoCompression { if level != flate.NoCompression {
log.Printf("Compressing with gzip compression level %v", level) log.Printf("Compressing with gzip compression level: %d", level)
gzipWriter, err := gzip.NewWriterLevel(dstF, level) gzipWriter, err := gzip.NewWriterLevel(dstWriter, level)
if err != nil { if err != nil {
return err return err
} }
defer gzipWriter.Close() defer gzipWriter.Close()
tarOrGzipWriter = gzipWriter
} else { dstWriter = gzipWriter
log.Printf("Skipping gzip compression")
tarOrGzipWriter = dstF
} }
tarWriter := tar.NewWriter(tarOrGzipWriter) tarWriter := tar.NewWriter(dstWriter)
defer tarWriter.Close() defer tarWriter.Close()
// This is the walk func that tars each of the files in the dir // This is the walk func that tars each of the files in the dir
......
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