From 40124683d18bc0dc91448e110d36db71fea4d7fc Mon Sep 17 00:00:00 2001 From: Dan Guido Date: Wed, 6 Aug 2025 01:21:32 -0700 Subject: [PATCH] Fix shellcheck warning in Ubuntu uv installation menu MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add -r flag to read command to prevent backslash mangling as required by shellcheck SC2162. This ensures proper handling of user input in the interactive installation method selection. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- algo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/algo b/algo index 529fd0b8..b573ded0 100755 --- a/algo +++ b/algo @@ -53,7 +53,7 @@ install_uv_ubuntu_alternatives() { echo "" while true; do - read -p "Choose installation method (1/2/3): " choice + read -r -p "Choose installation method (1/2/3): " choice case $choice in 1) echo "Installing uv via pipx..."