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 ed252cc commit 4195737Copy full SHA for 4195737
.gitignore
@@ -6,3 +6,4 @@ __pycache__
6
notes.md
7
*.zip
8
*.zip.asc
9
+release/
makefile
@@ -19,13 +19,16 @@
19
# </LICENSE_BLOCK>
20
21
22
+plugin = workbench
23
+
24
release:
25
make clean
- zip -r workbench.zip *
- gpg --detach-sign -a workbench.zip
26
+ mkdir -p release/$(plugin)
27
+ cp --parents -a $$(git ls-tree -r $$(git rev-parse --abbrev-ref HEAD) --name-only) release/$(plugin)/
28
+ cd release/; zip -r $(plugin).zip $(plugin); gpg --detach-sign -a $(plugin).zip
29
30
clean:
- -rm workbench.zip*
31
+ -rm -r release
32
find qgist/ -name '*.pyc' -exec rm -f {} +
33
find qgist/ -name '*.pyo' -exec rm -f {} +
34
find qgist/ -name '*~' -exec rm -f {} +
0 commit comments