Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 526614 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-9 / +11 lines)
Lines 21-22 Link Here
21
    r_overlays="$(layman -LkNq 2>/dev/null | grep -v '^$' | cut -d' ' -f3)"
21
    r_overlays() {
22
    l_overlays="$(layman -lkNq 2>/dev/null | grep -v '^$' | cut -d' ' -f3)"
22
        local remotes="$(layman -LkNq 2>/dev/null | grep -v '^$' | cut -d' ' -f3)"
23
--
23
        echo "$remotes"
24
    }
25
    l_overlays() {
26
        local locals="$(layman -lkNq 2>/dev/null | grep -v '^$' | cut -d' ' -f3)"
27
        echo "$locals"
28
    }
Line 34 Link Here
34
            COMPREPLY=( $(compgen -W "${r_overlays}" -- "${cur}") )
40
            COMPREPLY=( $(compgen -W "$(r_overlays)" -- "${cur}") )
35
--
Line 38 Link Here
38
            COMPREPLY=( $(compgen -W "${l_overlays}" -- "${cur}") )
44
            COMPREPLY=( $(compgen -W "$(l_overlays)" -- "${cur}") )
39
--
Line 42 Link Here
42
            COMPREPLY=( $(compgen -W "${l_overlays} ALL" -- "${cur}") )
48
            COMPREPLY=( $(compgen -W "$(l_overlays) ALL" -- "${cur}") )
43
--

Return to bug 526614