From 3f591a66103d49b311956618d440a84cf4d30715 Mon Sep 17 00:00:00 2001 From: Andrii Nakryiko Date: Wed, 24 May 2023 11:53:46 -0700 Subject: [PATCH] git: make .gitattributes compatible with git-archive-all action As reported by Quentin, using Github Action to archive all submodules (e.g., for retsnoop release packaging) is impacted by it not supporting "/" pattern in .gitattributes. Use "/**" instead. [0] https://github.com/anakryiko/retsnoop/pull/42#issuecomment-1560797837 Signed-off-by: Andrii Nakryiko --- .gitattributes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index 4218518..c899af4 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1 @@ -assets/ export-ignore +assets/** export-ignore