From 31614b46be7b8520953492d74da141a8949f60b5 Mon Sep 17 00:00:00 2001 From: Felipe Martin <812088+fmartingr@users.noreply.github.com> Date: Mon, 17 Jun 2024 11:40:39 +0200 Subject: [PATCH] fix: revert make dist to its original format (#84) Fixes the delivery pipeline by bringing back the root folder in the bundle file. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 417dad1..140aea5 100644 --- a/Makefile +++ b/Makefile @@ -262,7 +262,7 @@ ifneq ($(HAS_WEBAPP),) mkdir -p dist/$(PLUGIN_ID)/webapp cp -r webapp/dist dist/$(PLUGIN_ID)/webapp/ endif - cd dist && tar -cvzf $(BUNDLE_NAME) -C $(PLUGIN_ID) . + cd dist && tar -cvzf $(BUNDLE_NAME) $(PLUGIN_ID) @echo plugin built at: dist/$(BUNDLE_NAME)