-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix plugin-check cmd for provisioner only plugins (#88)
Before change ``` ~> packer-sdc plugin-check packer-plugin-puppet 2021/11/11 14:06:49 this plugin defines no component. ``` After Change ``` ~> packer-sdc plugin-check packer-plugin-puppet && echo $? 0 ```
- Loading branch information
Wilken Rivera
authored
Nov 11, 2021
1 parent
fe59092
commit a49f047
Showing
2 changed files
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
## `plugin-check` | ||
|
||
`plugin-check` will check wether a plugin binary seems to work with packer. | ||
`plugin-check` will check whether a plugin binary seems to work with packer. | ||
|
||
Use: `packer-sdc plugin-check packer-plugin-happy-cloud` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nice catch !