From 1be390a2a080d094a087fba0db8788a7885cdfe8 Mon Sep 17 00:00:00 2001 From: Gary Ewan Park Date: Fri, 7 Oct 2022 08:31:37 +0100 Subject: [PATCH] (doc) Use full name of option Based on feedback from this issue: https://github.com/chocolatey/choco/issues/2850 --- input/en-us/create/create-packages.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input/en-us/create/create-packages.md b/input/en-us/create/create-packages.md index d519d827fa..2eb714f09e 100644 --- a/input/en-us/create/create-packages.md +++ b/input/en-us/create/create-packages.md @@ -420,7 +420,7 @@ You can also use the `--debug` switch on `choco install` to provide more informa > Do not call install with `.nupkg` - pointing to a file explicitly overrides source. You must call your install with the package name, not the nupkg file and location. You've already specified for choco to look in a local source with `--source "'.;https://community.chocolatey.org/api/v2/'"`. Call `choco install dude --source "'.;https://community.chocolatey.org/api/v2/'"`, not `choco install .\dude.nupkg --source "'.;https://community.chocolatey.org/api/v2/'"`. ### Alternative testing strategy -You can also type `choco install -fdv path/to/nuspec` and choco will build the nupkg and attempt to install it. +You can also type `choco install --force --debug --verbose path/to/nuspec` and choco will build the nupkg and attempt to install it. > :memo: **NOTE** >