From f65f046cb5435329cd3341fc67cfbc6b36d71195 Mon Sep 17 00:00:00 2001 From: ruffrey <1668190+ruffrey@users.noreply.github.com> Date: Wed, 14 Jul 2021 09:45:25 -0700 Subject: [PATCH] Fix incorrect mv command for kubectl-convert Looks like the `mv` installation command for `kubectl-convert` had been copied from `kubectl` install, but not fully changed --- content/en/docs/tasks/tools/install-kubectl-macos.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/tasks/tools/install-kubectl-macos.md b/content/en/docs/tasks/tools/install-kubectl-macos.md index 2b214f6396..1cd6cb043e 100644 --- a/content/en/docs/tasks/tools/install-kubectl-macos.md +++ b/content/en/docs/tasks/tools/install-kubectl-macos.md @@ -228,7 +228,7 @@ Below are the procedures to set up autocompletion for Bash and Zsh. 1. Move the kubectl-convert binary to a file location on your system `PATH`. ```bash - sudo mv ./kubectl /usr/local/bin/kubectl-convert + sudo mv ./kubectl-convert /usr/local/bin/kubectl-convert sudo chown root: /usr/local/bin/kubectl-convert ```