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`.
This commit is contained in:
Sybren A. Stüvel 2024-11-11 10:55:47 +01:00
parent 7f37c16a8d
commit 30997013b1

View File

@ -88,7 +88,7 @@ func WebappStatic() error {
fmt.Printf("Web app has been installed into %s\n", webStatic) 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. // 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) return packAddon(zipPath)
} }