Skip to content

Commit 32bad66

Browse files
authored
Merge pull request #16 from dataiku/chore/dss14-sc-263938-update-dss-plugin-template-to-use-python3
chore: [sc-263938] Update dss-plugin-template to use python3 instead of python
2 parents e3b7f86 + 8553c92 commit 32bad66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 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('/',''))"`
2+
plugin_id=`cat plugin.json | python3 -c "import sys, json; print(str(json.load(sys.stdin)['id']).replace('/',''))"`
3+
plugin_version=`cat plugin.json | python3 -c "import sys, json; print(str(json.load(sys.stdin)['version']).replace('/',''))"`
44
archive_file_name="dss-plugin-${plugin_id}-${plugin_version}.zip"
55
remote_url=`git config --get remote.origin.url`
66
last_commit_id=`git rev-parse HEAD`

0 commit comments

Comments
 (0)