mirror of
https://github.com/zplug/zplug
synced 2026-08-04 18:24:46 +02:00
read -q leaves a newline in the input buffer after the user presses Enter, causing the next iteration's read -q to consume it immediately and skip that entry. Add a read -k 1 -s after the prompt to drain the leftover character, so every repo is properly prompted. Close #499