summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axil@gitlab.com>2019-09-02 17:07:37 +0000
committerAchilleas Pipinellis <axil@gitlab.com>2019-09-02 17:07:37 +0000
commitd3076322f230cea1f60a7e27d7ae6e1fb770234a (patch)
tree096b21ea9fc5b201cd3a581c0583706aeaf19740
parent62b001451bd993e365f2e10635c6d3ad669624f3 (diff)
parent554f419273853002c87fa4183de13f49ee718973 (diff)
downloadgitlab-ce-d3076322f230cea1f60a7e27d7ae6e1fb770234a.tar.gz
Merge branch 'patch-74' into 'master'
Docs: Clarify config value true is a string See merge request gitlab-org/gitlab-ce!32209
-rw-r--r--doc/user/application_security/dependency_scanning/index.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/user/application_security/dependency_scanning/index.md b/doc/user/application_security/dependency_scanning/index.md
index b40392e12d5..3276dc40dc0 100644
--- a/doc/user/application_security/dependency_scanning/index.md
+++ b/doc/user/application_security/dependency_scanning/index.md
@@ -77,7 +77,7 @@ like Gemnasium require sending data to GitLab central servers to analyze them:
The Gemnasium client does **NOT** send the exact package versions your project relies on.
You can disable the remote checks by [using](#customizing-the-dependency-scanning-settings)
-the `DS_DISABLE_REMOTE_CHECKS` environment variable and setting it to `true`.
+the `DS_DISABLE_REMOTE_CHECKS` environment variable and setting it to `"true"`.
## Configuration
@@ -115,7 +115,7 @@ include:
template: Dependency-Scanning.gitlab-ci.yml
variables:
- DS_DISABLE_REMOTE_CHECKS: true
+ DS_DISABLE_REMOTE_CHECKS: "true"
```
Because template is [evaluated before](../../../ci/yaml/README.md#include) the pipeline