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
diff options
context:
space:
mode:
authorMarcel Amirault <mamirault@gitlab.com>2019-09-10 13:15:43 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2019-09-10 13:15:43 +0300
commit78d09e3ef3df117499c172604bfa2ff51d21351d (patch)
treef550a77a80cdaea9fea994d4152f041d808acdf1 /doc/user/project
parenta52dbbbc5335a8ff35eb6b171eea5f019b6c7138 (diff)
Start linting for unneeded dollar signs
Do not use dollar signs in shell codeblocks when no output is shown
Diffstat (limited to 'doc/user/project')
-rw-r--r--doc/user/project/pages/getting_started_part_four.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/user/project/pages/getting_started_part_four.md b/doc/user/project/pages/getting_started_part_four.md
index d844d4222b1..80fa64b162d 100644
--- a/doc/user/project/pages/getting_started_part_four.md
+++ b/doc/user/project/pages/getting_started_part_four.md
@@ -53,9 +53,9 @@ write in the `.gitlab-ci.yml` the script you want to run so
GitLab Runner will do it for you. It looks more complicated than it
is. What you need to tell the Runner:
-```
-$ gem install jekyll
-$ jekyll build
+```sh
+gem install jekyll
+jekyll build
```
### Script