Fix shellcheck warning in Ubuntu uv installation menu

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 <noreply@anthropic.com>
This commit is contained in:
Dan Guido 2025-08-06 01:21:32 -07:00
parent 2508fbb407
commit 40124683d1

2
algo
View file

@ -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..."