Browse Source

Use . instead of - to separate plugin package filename elements

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

+ 2
- 2
plugin.mk View File

@@ -79,11 +79,11 @@ 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/
cp dist/$(SLUG)-"$(VERSION)"-$(ARCH).vcvplugin "$(RACK_USER_DIR)"/plugins-v2/
cp dist/*.vcvplugin "$(RACK_USER_DIR)"/plugins-v2/

.PHONY: clean dist
.DEFAULT_GOAL := all

Loading…
Cancel
Save