From 7b5a256da228beba672d057251b794360172a41d Mon Sep 17 00:00:00 2001 From: Bartek Grzybowski Date: Wed, 22 Jan 2020 08:59:56 +0100 Subject: [PATCH] Unset 'text' attribute for *.csar files explicitly *.csar files should have "-text" attribute assigned to avoid end of line substitution on checkouts and other git operations. Csar files (zip file) being binary files may not be detected as such in older versions of git (i.e. in CI Ubuntu 16.04 minions), so explicit git attribute needs to be set. Change-Id: Ib8f9e5291091075a369387d3f87b2def7e9dac51 Signed-off-by: Bartek Grzybowski Issue-ID: INT-1418 --- .gitattributes | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitattributes b/.gitattributes index 6313b56c..21a4e0a7 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,2 @@ * text=auto eol=lf +*.csar -text -- 2.16.6