summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Sjölund <erik.sjolund@gmail.com>2020-07-23 20:51:37 +0200
committerErik Sjölund <erik.sjolund@gmail.com>2020-07-23 20:51:37 +0200
commitc10d5a5ebe34d473891b979e57d6145e76246f31 (patch)
tree6ab3928b3b19b8a01b862e686efdda847f1ff58a
parent961fa6a6082990276300aaf39834da13183bb88e (diff)
downloadpodman-c10d5a5ebe34d473891b979e57d6145e76246f31.tar.gz
podman-c10d5a5ebe34d473891b979e57d6145e76246f31.tar.bz2
podman-c10d5a5ebe34d473891b979e57d6145e76246f31.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.md2
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 303d025b0..b959b947f 100644
--- a/docs/source/markdown/podman-run.1.md
+++ b/docs/source/markdown/podman-run.1.md
@@ -1129,7 +1129,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