From a010b3cb36e49abe2c969283f72c4f99a0010bc4 Mon Sep 17 00:00:00 2001 From: Sergey <167893183+opsmon@users.noreply.github.com> Date: Wed, 14 Jan 2026 21:34:16 +0300 Subject: [PATCH] docs: fix macOS PATH configuration in Packer installation guide MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Fixed incorrect PATH configuration in the macOS installation section of Packer quickstart guide. ## Problem In the macOS installation instructions (line 142), the PATH export command contained a redundant user directory placeholder that would result in an incorrect path. Reasoning $HOME already points to the user's home directory (e.g., /Users/username) Adding /<имя_пользователя> creates an incorrect path like /Users/username/username/packer Correct path should be: /Users/username/packer This aligns with the Linux installation approach (line 83) I hereby agree to the terms of the CLA available at: https://yandex.ru/legal/cla/?lang=en --- ru/_tutorials/infrastructure/packer-quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ru/_tutorials/infrastructure/packer-quickstart.md b/ru/_tutorials/infrastructure/packer-quickstart.md index 5197411dd1..28dd095539 100644 --- a/ru/_tutorials/infrastructure/packer-quickstart.md +++ b/ru/_tutorials/infrastructure/packer-quickstart.md @@ -139,7 +139,7 @@ Packer создаст и запустит виртуальную машину с 1. Добавьте Packer в переменную `PATH`: ```bash - echo 'export PATH="$PATH:$HOME/<имя_пользователя>/packer"' >> ~/.bash_profile + echo 'export PATH="$PATH:$HOME/packer"' >> ~/.bash_profile source ~/.bash_profile ```