mirror of
https://github.com/trailofbits/algo.git
synced 2025-09-03 10:33:13 +02:00
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:
parent
2508fbb407
commit
40124683d1
1 changed files with 1 additions and 1 deletions
2
algo
2
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..."
|
||||
|
|
Loading…
Add table
Reference in a new issue