Skip to content

Commit ca24e6c

Browse files
committed
feat(Makefile): Repair executable permission issues on Samba
1 parent 6144299 commit ca24e6c

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,7 @@ print-type-size: clean
3636

3737
print-longest-type-length: clean
3838
@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

Comments
 (0)