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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-02-08 06:08:47 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-02-08 06:08:47 +0300
commit91ed938e3d17d385a08459915972d7e3f6b8468e (patch)
tree194203988e612d82afbcc20f9aaf06ab6a451b39 /doc/development/licensing.md
parentbef1bd93d113723a156f5943e743193afad1ef71 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/licensing.md')
-rw-r--r--doc/development/licensing.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/development/licensing.md b/doc/development/licensing.md
index 052c90c2b37..2dc77b2eec8 100644
--- a/doc/development/licensing.md
+++ b/doc/development/licensing.md
@@ -16,25 +16,25 @@ There are a few basic commands License Finder provides that you'll need in order
To verify that the checks are passing, and/or to see what dependencies are causing the checks to fail:
-```
+```shell
bundle exec license_finder
```
To whitelist a new license:
-```
+```shell
license_finder whitelist add MIT
```
To blacklist a new license:
-```
+```shell
license_finder blacklist add GPLv2
```
To tell License Finder about a dependency's license if it isn't auto-detected:
-```
+```shell
license_finder licenses add my_unknown_dependency MIT
```