Make shebang linter happy by removing executable flag from all third party rust source files

This commit is contained in:
Jan Horak 2021-08-24 12:03:24 +02:00
parent e046b6fe79
commit 445607645c

View File

@ -396,11 +396,7 @@ echo "ac_add_options --disable-crashreporter" >> .mozconfig
echo 'export NODEJS="%{_buildrootdir}/bin/node-stdout-nonblocking-wrapper"' >> .mozconfig
# Remove executable bit to make brp-mangle-shebangs happy.
chmod -x third_party/rust/itertools/src/lib.rs
chmod a-x third_party/rust/gfx-backend-vulkan/src/*.rs
chmod a-x third_party/rust/gfx-hal/src/*.rs
chmod a-x third_party/rust/ash/src/extensions/ext/*.rs
chmod a-x third_party/rust/ash/src/extensions/khr/*.rs
find third_party -type f -iname "*.rs"|xargs chmod a-x
#===============================================================================