Skip to content

Commit

Permalink
refactor: fix Windows clippy (#880)
Browse files Browse the repository at this point in the history
Refactor: fix Windows clippy
  • Loading branch information
SteveLauC authored Jul 29, 2024
1 parent 5af0c6a commit e4441d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/steps/os/windows.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ pub fn insert_startup_scripts(git_repos: &mut RepoStep) -> Result<()> {
if let Ok(lnk) = parselnk::Lnk::try_from(Path::new(&path)) {
debug!("Startup link: {:?}", lnk);
if let Some(path) = lnk.relative_path() {
git_repos.insert_if_repo(&startup_dir.join(path));
git_repos.insert_if_repo(startup_dir.join(path));
}
}
}
Expand Down

0 comments on commit e4441d5

Please sign in to comment.