Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
packer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kristopher Ruzic
packer
Commits
aa1304f8
Commit
aa1304f8
authored
Jun 02, 2013
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
packer: Print command help if "--help" is given
parent
bbafcfa9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
packer/environment.go
packer/environment.go
+11
-1
No files found.
packer/environment.go
View file @
aa1304f8
...
...
@@ -154,7 +154,8 @@ func (e *coreEnvironment) Provisioner(name string) (p Provisioner, err error) {
func
(
e
*
coreEnvironment
)
Cli
(
args
[]
string
)
(
result
int
,
err
error
)
{
log
.
Printf
(
"Environment.Cli: %#v
\n
"
,
args
)
if
len
(
args
)
==
0
||
args
[
0
]
==
"--help"
||
args
[
0
]
==
"-h"
{
// If we have no arguments, just short-circuit here and print the help
if
len
(
args
)
==
0
{
e
.
printHelp
()
return
1
,
nil
}
...
...
@@ -188,6 +189,15 @@ func (e *coreEnvironment) Cli(args []string) (result int, err error) {
}
}
// If we're supposed to print help, then print the help of the
// command rather than running it.
for
_
,
arg
:=
range
args
{
if
arg
==
"--help"
||
arg
==
"-h"
{
e
.
ui
.
Say
(
command
.
Help
())
return
0
,
nil
}
}
log
.
Printf
(
"Executing command: %s
\n
"
,
args
[
0
])
return
command
.
Run
(
e
,
args
[
1
:
]),
nil
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment