Browse Source

Switch back from "." to "-" to separate parts in dist archives.

tags/v2.0.0
Andrew Belt 3 years ago
parent
commit
f5e6c70687
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      Makefile
  2. +1
    -1
      plugin.mk

+ 2
- 2
Makefile View File

@@ -139,9 +139,9 @@ endif


DIST_RES := LICENSE* CHANGELOG.md res cacert.pem Core.json template.vcv
DIST_NAME := Rack.$(VERSION).$(ARCH)
DIST_NAME := Rack-"$(VERSION)"-$(ARCH)
DIST_SDK_DIR := Rack-SDK
DIST_SDK := Rack-SDK.$(VERSION).zip
DIST_SDK := Rack-SDK-$(VERSION).zip
ifdef ARCH_MAC
DIST_DIR := VCV Rack.app
else


+ 1
- 1
plugin.mk View File

@@ -79,7 +79,7 @@ else
cp -r --parents $(DISTRIBUTABLES) dist/$(SLUG)/
endif
@# Create ZIP package
cd dist && tar -c $(SLUG) | zstd -$(ZSTD_COMPRESSION_LEVEL) -o "$(SLUG)"."$(VERSION)".$(ARCH).vcvplugin
cd dist && tar -c $(SLUG) | zstd -$(ZSTD_COMPRESSION_LEVEL) -o "$(SLUG)"-"$(VERSION)"-$(ARCH).vcvplugin

install: dist
mkdir -p "$(RACK_USER_DIR)"/plugins-v2/


Loading…
Cancel
Save