We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6144299 commit ca24e6cCopy full SHA for ca24e6c
1 file changed
Makefile
@@ -36,3 +36,7 @@ print-type-size: clean
36
37
print-longest-type-length: clean
38
@RUSTFLAGS="-Zprint-type-sizes" cargo build -p rusty_parser | perl -e 'print sort { length($$b) <=> length($$a) } <>' | grep Parser | grep -v std | awk '{print length}' | head -n1
39
+
40
+# Fix executable permission issues on Samba
41
+chmod-x:
42
+ git status -s | grep ' M ' | cut -d\ -f3 | xargs -n1 chmod -x
0 commit comments