fix: Update default clone URL for trash guides repo

New URL: https://github.com/TRaSH-Guides/Guides.git
pull/201/head
Robert Dailey 11 months ago
parent 010c788e14
commit 7733b5e569

@ -12,6 +12,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Migration step added to delete old `repo` directory. Run `recyclarr migrate` to use.
### Fixed
- Update default clone URL for trash guides repo to new URL:
`https://github.com/TRaSH-Guides/Guides.git`.
## [5.0.3] - 2023-06-25
### Fixed

@ -29,8 +29,9 @@ public class GitRepositoryFactory : IGitRepositoryFactory
await repo.Status();
}
_log.Debug("Remote 'origin' set to {Url}", repoUrl);
await repo.SetRemote("origin", repoUrl);
_log.Debug("Remote 'origin' set to {Url}", repoUrl);
return repo;
}
}

@ -4,7 +4,7 @@ namespace Recyclarr.TrashLib.Settings;
public record TrashRepository : IRepositorySettings
{
public Uri CloneUrl { get; [UsedImplicitly] init; } = new("https://github.com/TRaSH-/Guides.git");
public Uri CloneUrl { get; [UsedImplicitly] init; } = new("https://github.com/TRaSH-Guides/Guides.git");
public string Branch { get; [UsedImplicitly] init; } = "master";
public string? Sha1 { get; [UsedImplicitly] init; }
}

Loading…
Cancel
Save