diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2021-04-11 11:54:03 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2021-04-11 12:45:05 +0000 |
commit | 80056eeb0bed7c1b3346d68dd2d515b8b8ebf6bb (patch) | |
tree | f2ea6acfa29b1a7fbaa0fbf9934bc5264bcde947 /bin/container-shell | |
parent | Releasing version 20210101. (diff) | |
download | compute-tools-80056eeb0bed7c1b3346d68dd2d515b8b8ebf6bb.tar.xz compute-tools-80056eeb0bed7c1b3346d68dd2d515b8b8ebf6bb.zip |
Moving command files from /usr/lib to /usr/libexec.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to 'bin/container-shell')
-rwxr-xr-x | bin/container-shell | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/container-shell b/bin/container-shell index 016724f..0895691 100755 --- a/bin/container-shell +++ b/bin/container-shell @@ -64,7 +64,7 @@ Shell () echo "The following ${PROGRAM} commands are available:" echo - cd "/usr/lib/${PROJECT}/${PROGRAM}" + cd "/usr/libexec/${PROJECT}/${PROGRAM}" find . -type f -printf " %f\n" | sort cd "${OLDPWD}" @@ -97,7 +97,7 @@ Shell () ;; esac - if [ ! -e "/usr/lib/${PROJECT}/${PROGRAM}/${COMMAND}" ] + if [ ! -e "/usr/libexec/${PROJECT}/${PROGRAM}/${COMMAND}" ] then echo "'${COMMAND}': no such ${PROGRAM} command" >&2 return |