From 30997013b16c77d728c458e25064934008510f42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Mon, 11 Nov 2024 10:55:47 +0100 Subject: [PATCH] Fix: Blender add-on was accidentally built as flamenco3-addon.zip The Mage-based build tools accidentally built the add-on as `flamenco3-addon.zip` instead of `flamenco-addon.zip`. --- magefiles/build.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magefiles/build.go b/magefiles/build.go index ff444cfe..8037c4df 100644 --- a/magefiles/build.go +++ b/magefiles/build.go @@ -88,7 +88,7 @@ func WebappStatic() error { fmt.Printf("Web app has been installed into %s\n", webStatic) // Build the add-on ZIP as it's part of the static web files. - zipPath := filepath.Join(webStatic, "flamenco3-addon.zip") + zipPath := filepath.Join(webStatic, "flamenco-addon.zip") return packAddon(zipPath) }