diff options
author | Steve Dower <steve.dower@python.org> | 2019-10-20 01:25:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-20 01:25:35 (GMT) |
commit | c9ed34f5ad6cd9e86175a52588f9aacd7bf844ae (patch) | |
tree | a7deee17e856230cdd910e621d6f238a96836d5a /Tools | |
parent | b02f6929344ec3650d859d8e6182cce9d8e37c74 (diff) | |
download | cpython-c9ed34f5ad6cd9e86175a52588f9aacd7bf844ae.zip cpython-c9ed34f5ad6cd9e86175a52588f9aacd7bf844ae.tar.gz cpython-c9ed34f5ad6cd9e86175a52588f9aacd7bf844ae.tar.bz2 |
Work around Path.glob() issue when creating nuget package (GH-16855)
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/nuget/make_zip.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/nuget/make_zip.py b/Tools/nuget/make_zip.py index 8844cac..efc06bc 100644 --- a/Tools/nuget/make_zip.py +++ b/Tools/nuget/make_zip.py @@ -103,7 +103,7 @@ FULL_LAYOUT = [ ('Lib/', 'Lib', '**/*', include_in_lib), ('libs/', 'PCBuild/$arch', '*.lib', include_in_libs), ('Tools/', 'Tools', '**/*', include_in_tools), - ('/', '', 'LICENSE', None), + ('/', '', 'LICENSE*', None), ] EMBED_LAYOUT = [ |