From b65ae9140e73636492103467d341ccd35b5c24a9 Mon Sep 17 00:00:00 2001 From: Gris Ge Date: Thu, 16 Jul 2020 13:26:25 +0800 Subject: [PATCH] Remove executable bit of rust source file When compiling as rpm in Fedora, the brp-mangle-shebangs[1] will complain about src/lib.rs is executable without valid shebang. Remove the executable bit could fix this. [1]: https://src.fedoraproject.org/rpms/redhat-rpm-config/blob/master/f/brp-mangle-shebangs Signed-off-by: Gris Ge --- src/lib.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 src/lib.rs diff --git a/src/lib.rs b/src/lib.rs old mode 100755 new mode 100644