From 44d999e96daeeec7d10f46d23dccf07cae388f7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Wed, 19 Jun 2024 09:41:56 +0200 Subject: [PATCH] Use `LF` line-ending for all content except images This was mostly done to fix an issue where `gvisor_wrapper/ entrypoint.py` didn't have the correct line-ending on Windows, leading to a situation where the containers couldn't start. --- .gitattributes | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..f7c97ff --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +* text=auto +*.jpg -text +*.gif -text +*.png -text