updated README.

This commit is contained in:
Cédric Bonhomme 2020-01-06 18:16:47 +01:00
parent 43c8c432b8
commit d2b88a3e6c
Signed by untrusted user who does not match committer: cedric
GPG key ID: A1CB94DE57B7A70D
2 changed files with 3 additions and 3 deletions

View file

@ -15,7 +15,7 @@ added automatically in the output.
# Installation
## Use in your Python software
## Use it as a library
~~~bash
$ poetry install git-vuln-finder
@ -33,7 +33,7 @@ Type "help", "copyright", "credits" or "license" for more information.
~~~
## Use as a command line tool
## Use it as a command line tool
~~~bash
$ pipx install git-vuln-finder

View file

@ -11,7 +11,7 @@ def clone_curl():
git_url = 'https://github.com/curl/curl.git'
repo_dir = './test_repos/curl'
repo = Repo.clone_from(url=git_url, to_path=repo_dir)
repo.heads['curl-7_67_0'].checkout()
#repo.heads['curl-7_67_0'].checkout()
def teardown():
os.unlink(repo_dir)