From d8d7c8c2e4065485208431815aba6bf22f4f2e9c Mon Sep 17 00:00:00 2001 From: Kjell Ahlstedt Date: Fri, 23 Dec 2022 11:16:17 +0100 Subject: meson.build: Don't distribute the .github directory --- meson.build | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/meson.build b/meson.build index 629e86e..01c1f2e 100644 --- a/meson.build +++ b/meson.build @@ -266,12 +266,17 @@ if can_add_dist_script python3, dist_changelog, project_source_root, ) + # Don't distribute these files and directories. + dont_distribute = [ + '.github', + ] # Add build scripts to the distribution directory, and delete .gitignore # files and an empty $MESON_PROJECT_DIST_ROOT/build/ directory. meson.add_dist_script( python3, dist_build_scripts, project_source_root, 'untracked' / 'build_scripts', + dont_distribute, ) endif -- cgit v1.2.1