From 27a7893c45af815e9859bfc50bf6001cd6323e79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Wed, 17 Mar 2021 18:19:43 +0100 Subject: [PATCH] Clean some minor stuff from Makefile --- Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index c79b33a..3f147cf 100644 --- a/Makefile +++ b/Makefile @@ -21,8 +21,8 @@ upgrade-requirements: ## Upgrade requirements files build-pythonpackage: ## Build a python package ready to upload to pypi python setup.py sdist -push-pythonpackage: ## Push python packages to pypi - twine upload --skip-existing dist/tutor-*.tar.gz +push-pythonpackage: ## Push python package to pypi + twine upload --skip-existing dist/tutor-openedx-$(shell make version).tar.gz test: test-lint test-unit test-types test-format test-pythonpackage ## Run all tests by decreasing order or priority @@ -55,12 +55,9 @@ bootstrap-dev-plugins: bootstrap-dev ## Install dev requirement and all supporte bundle: ## Bundle the tutor package in a single "dist/tutor" executable pyinstaller tutor.spec -dist/tutor: - $(MAKE) bundle release: test ## Create a release tag and push it to origin $(MAKE) release-tag release-push TAG=v$(shell make version) - release-tag: @echo "=== Creating tag $(TAG)" git tag -d $(TAG) || true