From 0dc8072b36be6578676917e3d6523e9018d497a2 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Mon, 8 Jun 2015 15:53:42 +0200 Subject: [PATCH] call ./setup.py for when . is not in PATH --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.43.0