fmt
This commit is contained in:
parent
aaf024514f
commit
2981da4eef
|
@ -222,7 +222,7 @@ func (b *Builder) Prepare(raws ...interface{}) error {
|
|||
if _, err := os.Stat(b.config.OutputDir); err == nil {
|
||||
if b.config.PackerForce {
|
||||
log.Printf("Build forced, removing existing output directory: %s", string(b.config.OutputDir))
|
||||
os.RemoveAll(b.config.OutputDir)
|
||||
os.RemoveAll(b.config.OutputDir)
|
||||
} else {
|
||||
errs = append(errs, errors.New("Output directory already exists. It must not exist."))
|
||||
}
|
||||
|
|
|
@ -178,7 +178,7 @@ func (b *Builder) Prepare(raws ...interface{}) error {
|
|||
if _, err := os.Stat(b.config.OutputDir); err == nil {
|
||||
if b.config.PackerForce {
|
||||
log.Printf("Build forced, removing existing output directory: %s", string(b.config.OutputDir))
|
||||
os.RemoveAll(b.config.OutputDir)
|
||||
os.RemoveAll(b.config.OutputDir)
|
||||
} else {
|
||||
errs = append(errs, errors.New("Output directory already exists. It must not exist."))
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue