From 9e262d2a07aa6e22de7a48823eaa8a741fa14626 Mon Sep 17 00:00:00 2001 From: rugk Date: Sun, 10 Feb 2019 17:52:07 +0100 Subject: [PATCH] Fix example exclusion --- scripts/make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make.sh b/scripts/make.sh index 0a029c8..e28ed63 100755 --- a/scripts/make.sh +++ b/scripts/make.sh @@ -18,7 +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 "examples/*" -x "**/examples/*" -x "**/*.example" \ -x "**/README.md" -x "**/CONTRIBUTING.md" -x "**/manifest.json" \ -x "**/.git" -x "**/.gitignore" -x "**/.gitmodules" -x "**/.eslintrc" \ -x "**/.editorconfig"