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 _, err := os.Stat(b.config.OutputDir); err == nil {
|
||||||
if b.config.PackerForce {
|
if b.config.PackerForce {
|
||||||
log.Printf("Build forced, removing existing output directory: %s", string(b.config.OutputDir))
|
log.Printf("Build forced, removing existing output directory: %s", string(b.config.OutputDir))
|
||||||
os.RemoveAll(b.config.OutputDir)
|
os.RemoveAll(b.config.OutputDir)
|
||||||
} else {
|
} else {
|
||||||
errs = append(errs, errors.New("Output directory already exists. It must not exist."))
|
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 _, err := os.Stat(b.config.OutputDir); err == nil {
|
||||||
if b.config.PackerForce {
|
if b.config.PackerForce {
|
||||||
log.Printf("Build forced, removing existing output directory: %s", string(b.config.OutputDir))
|
log.Printf("Build forced, removing existing output directory: %s", string(b.config.OutputDir))
|
||||||
os.RemoveAll(b.config.OutputDir)
|
os.RemoveAll(b.config.OutputDir)
|
||||||
} else {
|
} else {
|
||||||
errs = append(errs, errors.New("Output directory already exists. It must not exist."))
|
errs = append(errs, errors.New("Output directory already exists. It must not exist."))
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,7 +47,7 @@ type Build interface {
|
||||||
// strictly prohibited.
|
// strictly prohibited.
|
||||||
SetDebug(bool)
|
SetDebug(bool)
|
||||||
|
|
||||||
// SetForce will enable/disable forcing a build when artifacts exist.
|
// SetForce will enable/disable forcing a build when artifacts exist.
|
||||||
//
|
//
|
||||||
// When SetForce is set to true, existing artifacts from the build are
|
// When SetForce is set to true, existing artifacts from the build are
|
||||||
// deleted prior to the build.
|
// deleted prior to the build.
|
||||||
|
|
Loading…
Reference in New Issue