diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2021-07-25 08:40:39 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2021-07-25 08:40:50 +0000 |
commit | cf900c7243979b6333d5c773f440ed54bfa4637c (patch) | |
tree | 4f81609f05393eb5b5b841c207e62d0cfd0c1d99 | |
parent | Correcting spelling typos in documentation files. (diff) | |
download | compute-tools-cf900c7243979b6333d5c773f440ed54bfa4637c.tar.xz compute-tools-cf900c7243979b6333d5c773f440ed54bfa4637c.zip |
Adding reference to manpage in 'no such container command' error message.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to '')
-rwxr-xr-x | bin/container | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/container b/bin/container index 3e329c9..9fec58c 100755 --- a/bin/container +++ b/bin/container @@ -46,7 +46,7 @@ for COMMAND in $(echo ${COMMANDS} | sed -e 's|,| |g') do if [ ! -e "/usr/libexec/${PROGRAM}/${COMMAND}" ] then - echo "'${COMMAND}': no such ${PROGRAM} command" >&2 + echo "'${COMMAND}': no such ${PROGRAM} command, see container(1)." >&2 exit 1 fi |