From 881f73af6f7488479589b037778af16cd87139b3 Mon Sep 17 00:00:00 2001 From: Mayeul Rousselet Date: Fri, 21 Aug 2026 14:54:01 +0200 Subject: [PATCH] Remove remote url --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9867e41..5dabdd7 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,6 @@ 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('/',''))"` archive_file_name="dss-plugin-${plugin_id}-${plugin_version}.zip" -remote_url=`git config --get remote.origin.url` last_commit_id=`git rev-parse HEAD` .DEFAULT_GOAL := plugin @@ -11,7 +10,7 @@ plugin: dist-clean @echo "[START] Archiving plugin to dist/ folder..." @cat plugin.json | json_pp > /dev/null @mkdir dist - @echo "{\"remote_url\":\"${remote_url}\",\"last_commit_id\":\"${last_commit_id}\"}" > release_info.json + @echo "{\"last_commit_id\":\"${last_commit_id}\"}" > release_info.json @git archive -v -9 --format zip -o dist/${archive_file_name} HEAD @if [[ -d tests ]]; then \ zip --delete dist/${archive_file_name} "tests/*"; \