Browse Source

Don't store extended attributes in plugin package

tags/v2.6.1
Andrew Belt 4 months ago
parent
commit
23e66d0111
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      plugin.mk

+ 3
- 2
plugin.mk View File

@@ -87,8 +87,9 @@ ifdef ARCH_MAC
else
cp -r --parents $(DISTRIBUTABLES) dist/$(SLUG)/
endif
@# Create ZIP package
cd dist && tar -c $(SLUG) | zstd -$(ZSTD_COMPRESSION_LEVEL) -o "$(SLUG)"-"$(VERSION)"-$(ARCH_NAME).vcvplugin
@# Archive plugin dir with Zstandard + tar
@# Don't store extended attributes with --no-xattrs
cd dist && tar --no-xattrs -c $(SLUG) | zstd -$(ZSTD_COMPRESSION_LEVEL) -o "$(SLUG)"-"$(VERSION)"-$(ARCH_NAME).vcvplugin

install: dist
mkdir -p "$(PLUGINS_DIR)"


Loading…
Cancel
Save