Переглянути джерело

Set execute bit on files if and only if they begin with (#!). (#7347)

* Set execute bit on files if and only if they begin with (#!).

Git only tracks the 'x' (executable) bit on each file. Prior to this
CL, our files were a random mix of executable and non-executable.
This change imposes some order by making files executable if and only
if they have shebang (#!) lines at the beginning.

We don't have any executable binaries checked into the repo, so
we shouldn't need to worry about that case.

* Added fix_permissions.sh script to set +x iff a file begins with (#!).
Joshua Haberman 5 роки тому
батько
коміт
c649397029

+ 8 - 0
benchmarks/python/py_benchmark.py

@@ -0,0 +1,8 @@
+#!/bin/bash
+for file in $(find . -type f); do
+  if [ "$(head -c 2 $file)" == "#!" ]; then
+    chmod u+x $file
+  else
+    chmod a-x $file
+  fi
+done

+ 0 - 0
java/core/src/main/java/com/google/protobuf/AllocatedBuffer.java