| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Subversion
Revision: 32916
Author: fabien
Date: 05 Sep 2008 07:41:40
Changes:Improved bash completion for 'merge' URL argument
* tools/client-side/bash_completion:
- better completion when in a 'trunk' subdirectory
| ... | ...@@ -361,7 +361,7 @@ | |
| 361 | 361 | # we guess that it is a merge from the trunk |
| 362 | 362 | COMPREPLY=( $(compgen -W ${here/\/branches\/*/\/trunk} -- $cur ) ) |
| 363 | 363 | return 0 |
| 364 | elif [[ "$here" == */trunk ]] ; then | |
| 364 | elif [[ "$here" == */trunk* ]] ; then | |
| 365 | 365 | # we guess that it is a merge from a branch |
| 366 | 366 | COMPREPLY=( $(compgen -W ${here/\/trunk*/\/branches\/} -- $cur ) ) |
| 367 | 367 | return 0 |