From 1882ed0049cadbd0ca61b72c1d366504509436ee Mon Sep 17 00:00:00 2001 From: Wilken Rivera Date: Tue, 5 Dec 2023 14:15:57 -0500 Subject: [PATCH] Update spacing for flags within Help text Before Change ``` Options: - path : install the plugin from a locally-sourced plugin binary. This installs the plugin where a normal invocation would, but will not try to download it from a remote location, and instead install the binary in the Packer plugins path. This option cannot be specified with a version constraint. - force: forces reinstallation of plugins, even if already installed. ``` After Change ``` Options: -path Install the plugin from a locally-sourced plugin binary. This installs the plugin where a normal invocation would, but will not try to download it from a remote location, and instead install the binary in the Packer plugins path. This option cannot be specified with a version constraint. -force Forces reinstallation of plugins, even if already installed. ``` --- command/plugins_install.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/command/plugins_install.go b/command/plugins_install.go index 4d8434a2780..753d2d558ba 100644 --- a/command/plugins_install.go +++ b/command/plugins_install.go @@ -49,12 +49,12 @@ Usage: packer plugins install [OPTIONS...] [] packer plugins install --path ./packer-plugin-happycloud "github.com/hashicorp/happycloud" Options: - - path : install the plugin from a locally-sourced plugin binary. This - installs the plugin where a normal invocation would, but will - not try to download it from a remote location, and instead - install the binary in the Packer plugins path. - This option cannot be specified with a version constraint. - - force: forces reinstallation of plugins, even if already installed. + -path Install the plugin from a locally-sourced plugin binary. + This installs the plugin where a normal invocation would, but will + not try to download it from a remote location, and instead + install the binary in the Packer plugins path. This option cannot + be specified with a version constraint. + -force Forces reinstallation of plugins, even if already installed. ` return strings.TrimSpace(helpText)