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 cb64103 commit d389122Copy full SHA for d389122
1 file changed
Makefile
@@ -1,6 +1,6 @@
1
2
PYTHON=python
3
-VERSION=`cut -d "'" -f 2 alerta/version.py`
+VERSION=`cut -d "'" -f 2 alertaclient/version.py`
4
5
all: help
6
@@ -23,7 +23,7 @@ init:
23
24
pylint:
25
@pip -q install pylint
26
- pylint --rcfile pylintrc alerta
+ pylint --rcfile pylintrc alertaclient
27
28
clean:
29
find . -name "*.pyc" -exec rm {} \;
@@ -32,8 +32,12 @@ clean:
32
test:
33
nosetests tests
34
35
+run:
36
+ alerta top
37
+
38
tag:
- git tag -a v$(VERSION) -m "version $(VERSION)"
39
+ git tag -a v$(VERSION) -m v$(VERSION)
40
41
upload:
42
$(PYTHON) setup.py sdist bdist_wheel upload
43
0 commit comments