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 e3b7f86 commit 8553c92Copy full SHA for 8553c92
Makefile
@@ -1,6 +1,6 @@
1
# Makefile variables set automatically
2
-plugin_id=`cat plugin.json | python -c "import sys, json; print(str(json.load(sys.stdin)['id']).replace('/',''))"`
3
-plugin_version=`cat plugin.json | python -c "import sys, json; print(str(json.load(sys.stdin)['version']).replace('/',''))"`
+plugin_id=`cat plugin.json | python3 -c "import sys, json; print(str(json.load(sys.stdin)['id']).replace('/',''))"`
+plugin_version=`cat plugin.json | python3 -c "import sys, json; print(str(json.load(sys.stdin)['version']).replace('/',''))"`
4
archive_file_name="dss-plugin-${plugin_id}-${plugin_version}.zip"
5
remote_url=`git config --get remote.origin.url`
6
last_commit_id=`git rev-parse HEAD`
0 commit comments