From af4c40d0d92834c91f7e22a567500a1f6972c967 Mon Sep 17 00:00:00 2001 From: Alex Combessie Date: Wed, 20 May 2020 18:41:12 +0200 Subject: [PATCH] Makefile compatibility fix --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b7e6194..ca4abd7 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ endif # evaluate additional variable plugin_id=`cat plugin.json | python -c "import sys, json; print(str(json.load(sys.stdin)['id']).replace('/',''))"` plugin_version=`cat plugin.json | python -c "import sys, json; print(str(json.load(sys.stdin)['version']).replace('/',''))"` -archive_file_name="dss-plugin_${plugin_id}_${plugin_version}.zip" +archive_file_name="dss-plugin-${plugin_id}-${plugin_version}.zip" artifact_repo_target="${DKU_PLUGIN_DEVELOPER_REPO_URL}/${TARGET_DSS_VERSION}/${DKU_PLUGIN_DEVELOPER_ORG}/${plugin_id}/${plugin_version}/${archive_file_name}" remote_url=`git config --get remote.origin.url` last_commit_id=`git rev-parse HEAD`