diff options
author | Erik Sjölund <erik.sjolund@gmail.com> | 2020-07-23 20:51:37 +0200 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2020-07-31 11:36:01 -0400 |
commit | b75a79b9818d1f94dd5624b043ae571295c2c6dd (patch) | |
tree | 6ebd516385fb09788d932d0c15efc541f33cae40 | |
parent | b55a0ce42eb836b8d4a7091ea8bdd82e58f8352b (diff) | |
download | podman-b75a79b9818d1f94dd5624b043ae571295c2c6dd.tar.gz podman-b75a79b9818d1f94dd5624b043ae571295c2c6dd.tar.bz2 podman-b75a79b9818d1f94dd5624b043ae571295c2c6dd.zip |
Fix exit code example in podman-run.1.md
Signed-off-by: Erik Sjölund <erik.sjolund@gmail.com>
-rw-r--r-- | docs/source/markdown/podman-run.1.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/markdown/podman-run.1.md b/docs/source/markdown/podman-run.1.md index 7b93eb025..d20b69507 100644 --- a/docs/source/markdown/podman-run.1.md +++ b/docs/source/markdown/podman-run.1.md @@ -1066,7 +1066,7 @@ the exit codes follow the **chroot**(1) standard, see below: **Exit code** _contained command_ exit code - $ podman run busybox /bin/sh -c 'exit 3' + $ podman run busybox /bin/sh -c 'exit 3'; echo $? 3 ## EXAMPLES |