fix(git): fix shellexpand::tilde in git_repos in topgrade.d/* (#1223)

This commit is contained in:
Gideon
2025-11-08 11:10:24 +01:00
committed by GitHub
parent b61886f0f9
commit 34b7943fd1
3 changed files with 1 additions and 21 deletions

View File

@@ -93,7 +93,7 @@ pub fn run_git_pull(ctx: &ExecutionContext) -> Result<()> {
// Handle user-defined repos
if let Some(custom_git_repos) = config.git_repos() {
for git_repo in custom_git_repos {
repos.glob_insert(git_repo);
repos.glob_insert(&shellexpand::tilde(git_repo));
}
}