From: Thierry Parmentelat Date: Mon, 8 Jun 2015 13:53:42 +0000 (+0200) Subject: call ./setup.py for when . is not in PATH X-Git-Tag: nepi-3.2.4-pypi~1 X-Git-Url: http://git.onelab.eu/?p=nepi.git;a=commitdiff_plain;h=0dc8072b36be6578676917e3d6523e9018d497a2 call ./setup.py for when . is not in PATH --- diff --git a/Makefile b/Makefile index ff684af4..f1a97d5a 100644 --- a/Makefile +++ b/Makefile @@ -83,7 +83,7 @@ pypi: @if [ -n "$(ALREADY_SET)" ] ; then echo "tag $(VERSIONTAG) already set"; false; fi @echo "You are about to release $(VERSION) - OK (Ctrl-c if not) ? " ; read _ git tag $(VERSIONTAG) - setup.py sdist upload -r pypi + ./setup.py sdist upload -r pypi @if [ ssh $(PYPI_TARBALL_HOST) ls $(PYPI_TARBALL_TOPDIR)/$(VERSIONTAR) ] ;\ then echo "$(VERSIONTAR) already present on $(PYPI_TARBALL_HOST) - ignored" ;\ else rsync -av dist/$(VERSIONTAR) $(PYPI_TARBALL_HOST):$(PYPI_TARBALL_TOPDIR)/ ;\ @@ -95,4 +95,4 @@ pypi: # in this case we do not want to upload anything on the build box though testpypi: - setup.py sdist upload -r testpypi + ./setup.py sdist upload -r testpypi