diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-09-08 19:09:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-08 19:09:02 +0200 |
commit | df8bd08fb1f6c98c0f03b2a4936f57c687eaf5cb (patch) | |
tree | 1cf241544a01b4a9b04c2740978baa68b1ead0a3 | |
parent | 6a7e235a27c9aeaa3636202947723c160a9f61fd (diff) | |
download | FlightCore-df8bd08fb1f6c98c0f03b2a4936f57c687eaf5cb.tar.gz FlightCore-df8bd08fb1f6c98c0f03b2a4936f57c687eaf5cb.zip |
fix: Remove hashes around raw string literal (#547)
clippy said they are "unnecessary"
-rw-r--r-- | src-tauri/src/northstar/install.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-tauri/src/northstar/install.rs b/src-tauri/src/northstar/install.rs index c1ae2a80..757f6c68 100644 --- a/src-tauri/src/northstar/install.rs +++ b/src-tauri/src/northstar/install.rs @@ -184,7 +184,7 @@ pub async fn install_northstar( Err(err) => { if game_path .to_lowercase() - .contains(&r#"C:\Program Files\"#.to_lowercase()) + .contains(&r"C:\Program Files\".to_lowercase()) // default is `C:\Program Files\EA Games\Titanfall2` { return Err( |