diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2021-04-11 12:36:12 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2021-04-11 12:45:43 +0000 |
commit | f2f17acc25862fed039e8e762ffbab82f38e2e1d (patch) | |
tree | a652c70aa133dc27604028676af76874ee887816 /share/bash-completion | |
parent | Using /usr/libexec/container instead of /usr/libexec/open-infrastructure/cont... (diff) | |
download | compute-tools-f2f17acc25862fed039e8e762ffbab82f38e2e1d.tar.xz compute-tools-f2f17acc25862fed039e8e762ffbab82f38e2e1d.zip |
Using /usr/share/compute-tools instead of /usr/share/open-infrastructure/container.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to '')
-rw-r--r-- | share/bash-completion/container | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/bash-completion/container b/share/bash-completion/container index 869c920..810d1c2 100644 --- a/share/bash-completion/container +++ b/share/bash-completion/container @@ -69,7 +69,7 @@ _container() ;; -s|--script) - opts="$(cd /usr/share/open-infrastructure/container/scripts && find -maxdepth 1 -not -type d -and -not -name 'default' -and -not -name 'debconf' -and -not -name '*.d' -printf '%P\n' | sort)" + opts="$(cd /usr/share/compute-tools/scripts && find -maxdepth 1 -not -type d -and -not -name 'default' -and -not -name 'debconf' -and -not -name '*.d' -printf '%P\n' | sort)" COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) return 0 ;; |