We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b161582 commit 3e342a8Copy full SHA for 3e342a8
Makefile
@@ -0,0 +1,11 @@
1
+
2
3
4
+extract = $(shell grep -A2 $(1) Plugin.php | tail -n1 | tr -d " ;'" | sed "s/return//")
5
6
+plugin = $(call extract, getPluginName)
7
+version = $(call extract, getPluginVersion)
8
9
+all:
10
+ @echo "Build archive for plugin ${plugin} version=${version}"
11
+ @git archive HEAD --prefix=${plugin}/ --format=zip -o ${plugin}-${version}.zip
Plugin.php
@@ -202,7 +202,7 @@ public function getPluginAuthor()
202
}
203
public function getPluginVersion()
204
{
205
- return '1.7.13';
+ return '1.8.0';
206
207
public function getPluginHomepage()
208
0 commit comments