From a9b5d2284ffac4c32227c10e173a9635b5dc55ae Mon Sep 17 00:00:00 2001 From: Kai Roth Date: Mon, 17 Apr 2023 22:57:25 +0200 Subject: [PATCH 1/3] chore: :see_no_evil: Add `.gitattributes` to allow AssetLib downloads --- .gitattributes | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..ecc916f3 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,12 @@ +# Git stuff +/.gitattributes export-ignore +/.gitignore export-ignore +.github/ export-ignore +/README.md export-ignore + +# Tests +test/ export-ignore + +# Files not required by AssetLib downloads +addons/mod_loader/vendor/ export-ignore +addons/mod_loader/mod_loader_setup.gd export-ignore \ No newline at end of file From 595cd438dd745f530ae83b5478a9ab6f0f7fd2b1 Mon Sep 17 00:00:00 2001 From: Kai Roth Date: Mon, 17 Apr 2023 23:00:03 +0200 Subject: [PATCH 2/3] style: :art: fix spacing --- .gitattributes | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitattributes b/.gitattributes index ecc916f3..ea3bc71a 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,8 +1,8 @@ # Git stuff -/.gitattributes export-ignore -/.gitignore export-ignore -.github/ export-ignore -/README.md export-ignore +/.gitattributes export-ignore +/.gitignore export-ignore +.github/ export-ignore +/README.md export-ignore # Tests test/ export-ignore From 1e7c067da8bd5a8187e905f94bcec79c7f6837c8 Mon Sep 17 00:00:00 2001 From: Kai Roth Date: Mon, 17 Apr 2023 23:09:13 +0200 Subject: [PATCH 3/3] style: :art: spaces instead of tabs and better comment --- .gitattributes | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitattributes b/.gitattributes index ea3bc71a..84458748 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,12 +1,12 @@ # Git stuff -/.gitattributes export-ignore -/.gitignore export-ignore -.github/ export-ignore -/README.md export-ignore +/.gitattributes export-ignore +/.gitignore export-ignore +.github/ export-ignore +/README.md export-ignore # Tests -test/ export-ignore +test/ export-ignore -# Files not required by AssetLib downloads -addons/mod_loader/vendor/ export-ignore -addons/mod_loader/mod_loader_setup.gd export-ignore \ No newline at end of file +# Files not required by AssetLib downloads (provided via download for manual installers) +addons/mod_loader/vendor/ export-ignore +addons/mod_loader/mod_loader_setup.gd export-ignore \ No newline at end of file