20 lines
783 B
Go
20 lines
783 B
Go
package build
|
|
|
|
const helpText = `
|
|
Usage: packer build [options] TEMPLATE
|
|
|
|
Will execute multiple builds in parallel as defined in the template.
|
|
The various artifacts created by the template will be outputted.
|
|
|
|
Options:
|
|
|
|
-debug Debug mode enabled for builds
|
|
-force Force a build to continue if artifacts exist, deletes existing artifacts
|
|
-machine-readable Machine-readable output
|
|
-except=foo,bar,baz Build all builds other than these
|
|
-only=foo,bar,baz Only build the given builds by name
|
|
-parallel=false Disable parallelization (on by default)
|
|
-var 'key=value' Variable for templates, can be used multiple times.
|
|
-var-file=path JSON file containing user variables.
|
|
`
|