CONFIG: fix odd behaviour in bash completion (issue #1011)
- The test condition [ -n "$cur" -a ... ] fails if $cur starts with '-le', which bash interprets as a further test op. Splitting the test condition solves the problem: [ -n "$cur" ] && [ ... ]
Please register or sign in to comment