Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc/ci
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-03-22 09:10:00 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-03-22 09:10:00 +0300
commit92482bb9019a38c80e671eee5e669440fd1eddf8 (patch)
tree3c0fe3eb1c5789e367846ba7c6d65f8e5ea46f09 /doc/ci
parent614bf8111f7a4287f7d3b456043a9c1866f2ee30 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/ci')
-rw-r--r--doc/ci/yaml/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ci/yaml/README.md b/doc/ci/yaml/README.md
index 404f2e07384..563c71b0e50 100644
--- a/doc/ci/yaml/README.md
+++ b/doc/ci/yaml/README.md
@@ -279,7 +279,7 @@ storing the exit code in a variable:
```yaml
job:
script:
- - false && true; exit_code=$?
+ - false || exit_code=$?
- if [ $exit_code -ne 0 ]; then echo "Previous command failed"; fi;
```