Skip to content

Commit

Permalink
Qualify the libs in README
Browse files Browse the repository at this point in the history
  • Loading branch information
Miikka Koskinen committed Aug 22, 2020
1 parent a8c86f0 commit a6fd635
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ Check your deps.edn dependencies against known security vulnerabilities in [Nati
*clj-nvd has not been released yet, so you'll have to use a git dependency.*

```sh
clojure -Sdeps '{:deps {clj-nvd {:git/url "https://github.com/miikka/clj-nvd.git" :sha "f2ec98699e057a379baf170cb49cf7ad76874a70"}}}' -m clj-nvd.core check
clojure -Sdeps '{:deps {clj-nvd/clj-nvd {:git/url "https://github.com/miikka/clj-nvd.git" :sha "f2ec98699e057a379baf170cb49cf7ad76874a70"}}}' -m clj-nvd.core check
```

Alternatively, add clj-nvd as a git dependency to your `deps.edn`:

```clojure
{:aliases
{:clj-nvd {:extra-deps {clj-nvd {:git/url "https://github.com/miikka/clj-nvd.git"
:sha "f2ec98699e057a379baf170cb49cf7ad76874a70"}}
{:clj-nvd {:extra-deps {clj-nvd/clj-nvd {:git/url "https://github.com/miikka/clj-nvd.git"
:sha "f2ec98699e057a379baf170cb49cf7ad76874a70"}}
:main-opts ["-m" "clj-nvd.core"]}}}
```

Expand Down

0 comments on commit a6fd635

Please sign in to comment.