Skip to content
Snippets Groups Projects
Commit 402b0db9 authored by Sebastien Luttringer's avatar Sebastien Luttringer
Browse files

replace double by simple quote in bash_completion

parent d9ca21d1
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ _repo() {
# list all images available in any online repositories
_image() {
COMPREPLY=("${COMPREPLY[@]}" $(compgen -W "$(is -q --no-color list -p '*')" -- "$cur") $(compgen -f -X "!*.isimage" -- "$cur"))
COMPREPLY=("${COMPREPLY[@]}" $(compgen -W "$(is -q --no-color list -p '*')" -- "$cur") $(compgen -f -X '!*.isimage' -- "$cur"))
}
# generate completion from optional arguments
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment