We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e01c1e commit 36a1083Copy full SHA for 36a1083
Makefile
@@ -1,4 +1,5 @@
1
MAIN=cli
2
+APP=things-cli
3
SRC_CORE=things_cli
4
SRC_TEST=tests
5
PYTHON=python3
@@ -94,7 +95,7 @@ feedback: ## Give feedback
94
95
96
release: build ## Create a new release
97
@type gh >/dev/null 2>&1 || (echo "Run e.g. 'brew install gh' first." >&2 ; exit 1)
- @gh release create "v$(VERSION)" -t "Release $(VERSION) ($(DATE))" 'dist/$(MAIN).py-$(VERSION).tar.gz'
98
+ @gh release create "v$(VERSION)" -t "Release $(VERSION) ($(DATE))" 'dist/$(APP)-$(VERSION).tar.gz'
99
100
build: clean ## Build the code
101
@$(PYTHON) setup.py sdist bdist_wheel
0 commit comments