From 39c45ab2fca0c792280e474a9683219f32902c8d Mon Sep 17 00:00:00 2001 From: Will Daly Date: Wed, 8 Dec 2021 14:23:35 -0800 Subject: [PATCH] docs: Fix delete-bucket command in HOWTO doc The HOWTO document says to use "chezmoi delete-bucket" to clear the state of the `run_once_` scripts, but when I try that I get this error: chezmoi: unknown command "delete-bucket" for "chezmoi" This commit updates the documentation to use "chezmoi state delete-bucket" instead, which I believe is the intended command. --- docs/HOWTO.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/HOWTO.md b/docs/HOWTO.md index 7d0d1c4f4ef..377190da9d7 100644 --- a/docs/HOWTO.md +++ b/docs/HOWTO.md @@ -1440,7 +1440,7 @@ chezmoi stores whether and when `run_once_` scripts have been run in the scripts, run: ```console -$ chezmoi delete-bucket --bucket=scriptState +$ chezmoi state delete-bucket --bucket=scriptState ``` ---