summaryrefslogtreecommitdiff
path: root/docs/source
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-07-23 21:37:17 +0200
committerGitHub <noreply@github.com>2020-07-23 21:37:17 +0200
commit197825d2abeb3abaa0d71cb8574c036eaf211ab5 (patch)
tree693c5d004c0e20387066b5a691cd9e7553f7e2d0 /docs/source
parentd4b5a181825fe8d402380ead4941f3afccd5e12e (diff)
parentc10d5a5ebe34d473891b979e57d6145e76246f31 (diff)
downloadpodman-197825d2abeb3abaa0d71cb8574c036eaf211ab5.tar.gz
podman-197825d2abeb3abaa0d71cb8574c036eaf211ab5.tar.bz2
podman-197825d2abeb3abaa0d71cb8574c036eaf211ab5.zip
Merge pull request #7072 from eriksjolund/doc_fix_podman_run
[CI:DOCS] Fix exit code example in podman-run.1.md
Diffstat (limited to 'docs/source')
-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