mirror of
https://github.com/httpie/cli.git
synced 2024-11-21 23:33:12 +01:00
Fixes
This commit is contained in:
parent
ab3ea24630
commit
348cc7d5c5
@ -83,7 +83,7 @@ task during `setup`_—for your active shell session using the following command
|
|||||||
source venv/bin/activate
|
source venv/bin/activate
|
||||||
|
|
||||||
(If you use ``virtualenvwrapper``, you can also use ``workon httpie`` to
|
(If you use ``virtualenvwrapper``, you can also use ``workon httpie`` to
|
||||||
active the environment — we have created a symlink for you. It’s a bit of
|
activate the environment — we have created a symlink for you. It’s a bit of
|
||||||
a hack but it works™.)
|
a hack but it works™.)
|
||||||
|
|
||||||
You should now see ``(httpie)`` next to your shell prompt, and
|
You should now see ``(httpie)`` next to your shell prompt, and
|
||||||
|
5
Makefile
5
Makefile
@ -100,7 +100,7 @@ test-tox: uninstall-httpie install
|
|||||||
@echo
|
@echo
|
||||||
|
|
||||||
|
|
||||||
test-sdist: clean uninstall-httpie
|
test-sdist: clean venv
|
||||||
@echo $(H1)Testing sdist build an installation$(H1END)
|
@echo $(H1)Testing sdist build an installation$(H1END)
|
||||||
$(VENV_PYTHON) setup.py sdist
|
$(VENV_PYTHON) setup.py sdist
|
||||||
$(VENV_PIP) install --force-reinstall --upgrade dist/*.gz
|
$(VENV_PIP) install --force-reinstall --upgrade dist/*.gz
|
||||||
@ -108,8 +108,9 @@ test-sdist: clean uninstall-httpie
|
|||||||
@echo
|
@echo
|
||||||
|
|
||||||
|
|
||||||
test-bdist-wheel: clean uninstall-httpie
|
test-bdist-wheel: clean venv
|
||||||
@echo $(H1)Testing wheel build an installation$(H1END)
|
@echo $(H1)Testing wheel build an installation$(H1END)
|
||||||
|
$(VENV_PIP) install wheel
|
||||||
$(VENV_PYTHON) setup.py bdist_wheel
|
$(VENV_PYTHON) setup.py bdist_wheel
|
||||||
$(VENV_PIP) install --force-reinstall --upgrade dist/*.whl
|
$(VENV_PIP) install --force-reinstall --upgrade dist/*.whl
|
||||||
$(VENV_BIN)/http --version
|
$(VENV_BIN)/http --version
|
||||||
|
Loading…
Reference in New Issue
Block a user