From eb20e0e2fd8707c4be0c9c5fc25a89a22313af62 Mon Sep 17 00:00:00 2001 From: don-tnowe <67479453+don-tnowe@users.noreply.github.com> Date: Thu, 16 Feb 2023 15:48:57 +0200 Subject: [PATCH] Prevent files outside addons/ from being installed --- .gitattributes | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitattributes b/.gitattributes index 6313b56..029807d 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,8 @@ * text=auto eol=lf + +# Only include the addons and example folders when downloading from the Asset Library. +/** export-ignore +/addons !export-ignore +/addons/** !export-ignore +/example !export-ignore +/example/** !export-ignore