From 341addb283e49c52afa5f3d0e224bbe3cddb0dcc Mon Sep 17 00:00:00 2001 From: rugk Date: Sun, 10 Feb 2019 17:44:13 +0100 Subject: [PATCH] Also exclude example files --- scripts/make.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/make.sh b/scripts/make.sh index e857d4e..0a029c8 100755 --- a/scripts/make.sh +++ b/scripts/make.sh @@ -18,6 +18,7 @@ cp "./scripts/manifests/firefox.json" "./src/manifest.json" || exit cd src || exit zip -r -FS "../build/$EXTENSION_NAME.xpi" ./* -x "tests/*" -x "**/tests/*" \ -x "docs/*" -x "**/docs/*" \ + -x "example/*" -x "**/example/*" -x "**/*.example" \ -x "**/README.md" -x "**/CONTRIBUTING.md" -x "**/manifest.json" \ -x "**/.git" -x "**/.gitignore" -x "**/.gitmodules" -x "**/.eslintrc" \ -x "**/.editorconfig"