This is an automated email from the ASF dual-hosted git repository.

vladimirsitnikov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/calcite.git


The following commit(s) were added to refs/heads/master by this push:
     new cf755f2  Add executable flags via .gitattributes so release artifacts 
have executable bits
cf755f2 is described below

commit cf755f27dce1fb9aa902f41528f48a326e31c51a
Author: Vladimir Sitnikov <[email protected]>
AuthorDate: Thu Jan 30 18:07:21 2020 +0300

    Add executable flags via .gitattributes so release artifacts have 
executable bits
    
    executable is a non-standard bit that is used by
    
https://github.com/vlsi/vlsi-release-plugins/tree/master/plugins/stage-vote-release-plugin
    
    It enables to create the appropriate archives even in case the filesystem
    does not support executable file attributes.
---
 .gitattributes | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/.gitattributes b/.gitattributes
index f12ff45..ecbb145 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -6,18 +6,18 @@
 *.html   text diff=html
 *.kt     text diff=kotlin
 *.kts    text diff=kotlin
-*.py     text diff=python
-*.pl     text diff=perl
+*.py     text diff=python executable
+*.pl     text diff=perl executable
 *.pm     text diff=perl
 *.css    text
 *.js     text
 *.sql    text
 *.q      text
 
-*.sh     text eol=lf
-gradlew  text eol=lf
-sqlsh    text eol=lf
-sqlline  text eol=lf
+*.sh     text eol=lf executable
+gradlew  text eol=lf executable
+sqlsh    text eol=lf executable
+sqlline  text eol=lf executable
 
 #test files, use lf so that size is same on windows as well
 data/files/*.dat    text eol=lf

Reply via email to