dylanhart / ulid-rs

This is a Rust implementation of the ulid project
https://crates.io/crates/ulid
MIT License
389 stars 37 forks source link

Make lib.rs non-executable #81

Closed V02460 closed 6 months ago

V02460 commented 7 months ago

While packaging ulid-rs for Fedora, our checks complained about lib.rs being an executable file with an invalid hash bang. Because it is a Rust source file, there is no need for it to be executable at all.

This PR changes the file permissions of lib.rs to be non-executable (755→644).