diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2016-04-01 19:11:33 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2016-04-16 10:19:46 +0000 |
commit | b38388f44e0ec398a1d61e890a8e30fe75971a87 (patch) | |
tree | f3e649003c7fcb44092052054e193badf47d9acc | |
parent | Completing output of container-shell help command. (diff) | |
download | compute-tools-b38388f44e0ec398a1d61e890a8e30fe75971a87.tar.xz compute-tools-b38388f44e0ec398a1d61e890a8e30fe75971a87.zip |
Avoid aborting container-shell help command if no manpage is available.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
-rwxr-xr-x | bin/container-shell | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/container-shell b/bin/container-shell index 5a2f03b..71bf6e3 100755 --- a/bin/container-shell +++ b/bin/container-shell @@ -62,7 +62,7 @@ Shell () ;; *) - man ${PROGRAM}-${1} + man ${PROGRAM}-${1} || true return ;; |