mirror of
https://github.com/trailofbits/algo.git
synced 2025-09-05 19:43:22 +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 ""
|
echo ""
|
||||||
|
|
||||||
while true; do
|
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
|
case $choice in
|
||||||
1)
|
1)
|
||||||
echo "Installing uv via pipx..."
|
echo "Installing uv via pipx..."
|
||||||
|
|
Loading…
Add table
Reference in a new issue