From: Steve Dower Date: Sun, 20 Oct 2019 01:25:35 +0000 (-0700) Subject: Work around Path.glob() issue when creating nuget package (GH-16855) X-Git-Tag: v2.7.18rc1~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9ed34f5ad6cd9e86175a52588f9aacd7bf844ae;p=thirdparty%2FPython%2Fcpython.git Work around Path.glob() issue when creating nuget package (GH-16855) --- diff --git a/Tools/nuget/make_zip.py b/Tools/nuget/make_zip.py index 8844cacb096e..efc06bc30652 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 = [