Merge pull request #42 from elasticdog/output-directory

Store the output *.box files in a dedicated directory
This commit is contained in:
Aaron Bull Schaefer 2016-02-07 20:50:16 -08:00
commit fe1a5f6f5b
3 changed files with 5 additions and 6 deletions

3
.gitignore vendored
View file

@ -1,3 +1,2 @@
packer_arch_*.box
output/*.box
packer_cache
output-vmware

View file

@ -42,7 +42,7 @@ should be good to clone this repo and go:
Then you can import the generated box into Vagrant:
$ vagrant box add arch packer_arch_virtualbox.box
$ vagrant box add arch output/packer_arch_virtualbox.box
### VMware Provider
@ -58,7 +58,7 @@ this repo and go:
Then you can import the generated box into Vagrant:
$ vagrant box add arch packer_arch_vmware.box
$ vagrant box add arch output/packer_arch_vmware.box
### Parallels Provider
@ -73,7 +73,7 @@ this repo and go:
Then you can import the generated box into Vagrant:
$ vagrant box add arch packer_arch_parallels.box
$ vagrant box add arch output/packer_arch_parallels.box
### wrapacker

View file

@ -74,7 +74,7 @@
"post-processors": [
{
"type": "vagrant",
"output": "packer_arch_{{.Provider}}.box"
"output": "output/packer_arch_{{.Provider}}.box"
}
]
}