File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,16 @@ version=x.y.z
2323pip install https://github.com/britive/python-cli/releases/download/v$version /pybritive-$version .tar.gz
2424~~~
2525
26+ Or you can always pull the latest version using one of the following commands
27+
28+ ~~~
29+ pip install $(curl -s https://api.github.com/repos/britive/python-cli/releases/latest | jq -r '.assets[] | select(.content_type == "application/x-gzip") | .browser_download_url')
30+
31+ OR
32+
33+ pip install $(curl -s https://api.github.com/repos/britive/python-cli/releases/latest | grep "browser_download_url.*.tar.gz" | cut -d : -f 2,3 | tr -d \")
34+ ~~~
35+
2636The end user is free to install the CLI into a virtual environment or in the global scope, so it is available
2737everywhere.
2838
Original file line number Diff line number Diff line change 11[metadata]
22name = pybritive
3- version = 0.1.5
3+ version = 0.1.6
44author = Britive Inc.
55author_email = support@britive.com
66description = A pure Python CLI for Britive
You can’t perform that action at this time.
0 commit comments