jaemk / self_update

Self updates for rust executables
MIT License
772 stars 65 forks source link

Fix clippy warnings #104

Closed oeb25 closed 1 year ago

oeb25 commented 1 year ago

This fixes all clippy warnings on the latest stable:

Clippy also warned about the test_bump_* test cases, where assert_eq!(true, ...) and assert_eq!(false, ...) are used. I've changed these to assert!(...) and assert!(!...) respectively. Let me know if you want these reverted!

jaemk commented 1 year ago

thanks!