diff options
author | Melody Horn <melody@boringcactus.com> | 2024-11-10 22:05:44 -0700 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2024-11-10 22:05:44 -0700 |
commit | 87ce694f4d15d84e5737615b2768deaf866a796d (patch) | |
tree | 4332030d2417e7563170ebf6d06efb8a6bd97d86 /src/makefile/mod.rs | |
parent | 07b4b35c44d488fea2916e7d985f60f923ed0e4c (diff) | |
download | makers-87ce694f4d15d84e5737615b2768deaf866a796d.tar.gz makers-87ce694f4d15d84e5737615b2768deaf866a796d.zip |
clean up random rustrover lints
Diffstat (limited to 'src/makefile/mod.rs')
-rw-r--r-- | src/makefile/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefile/mod.rs b/src/makefile/mod.rs index d1e9729..8fd7113 100644 --- a/src/makefile/mod.rs +++ b/src/makefile/mod.rs @@ -68,7 +68,7 @@ impl<'a> Makefile<'a> { "MAKE".to_owned(), Macro { source: ItemSource::Builtin, - text: std::env::current_exe().map_or_else( + text: env::current_exe().map_or_else( |_| TokenString::text("makers"), |x| TokenString::text(x.to_string_lossy()), ), |