Skip to content

Commit

Permalink
Don't include licence file in compiled bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
aiden2480 authored May 13, 2022
1 parent a460afe commit a591947
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/webstore.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def generate_zipfile() -> io.BytesIO:

print("\nGenerating zip file")
zipped = zipfile.ZipFile(buffer := io.BytesIO(), "w")
pattern = re.compile(r".\\(.git\\|.github\\|local\\|.gitignore|README.md)")
pattern = re.compile(r".\\(.git\\|.github\\|local\\|.gitignore|README.md|LICENCE)")

for root, dirs, files in os.walk("."):
for name in files:
Expand Down

0 comments on commit a591947

Please sign in to comment.