diff --git a/Makefile b/Makefile index 83563bf..95cff6b 100644 --- a/Makefile +++ b/Makefile @@ -235,6 +235,12 @@ bundle: rm -rf dist/ mkdir -p dist/$(PLUGIN_ID) ./build/bin/manifest dist +ifneq ($(wildcard LICENSE.txt),) + cp -r LICENSE.txt dist/$(PLUGIN_ID)/ +endif +ifneq ($(wildcard NOTICE.txt),) + cp -r NOTICE.txt dist/$(PLUGIN_ID)/ +endif ifneq ($(wildcard $(ASSETS_DIR)/.),) cp -r $(ASSETS_DIR) dist/$(PLUGIN_ID)/ endif