Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 90965ea

Browse files
Tweaking the md5 urls
1 parent 66b7537 commit 90965ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/GitHub.Api/Installer/GitInstaller.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,13 @@ public void SetupGitIfNeeded(ActionTask<NPath> onSuccess, ITask onFailure)
105105
var gitLfsExtractPath = tempZipPath.Combine("git-lfs").CreateDirectory();
106106

107107
var downloadGitMd5Task = new DownloadTextTask(CancellationToken.None,
108-
"https://ghfvs-installer.github.com/unity/portable_git/git.zip.MD5.txt?cb=1");
108+
"https://ghfvs-installer.github.com/unity/portable_git/git.zip.MD5.txt");
109109

110110
var downloadGitTask = new DownloadTask(CancellationToken.None, environment.FileSystem,
111111
"https://ghfvs-installer.github.com/unity/portable_git/git.zip", gitArchivePath, retryCount: 1);
112112

113113
var downloadGitLfsMd5Task = new DownloadTextTask(CancellationToken.None,
114-
"https://ghfvs-installer.github.com/unity/portable_git/git-lfs.zip.MD5.txt?cb=1");
114+
"https://ghfvs-installer.github.com/unity/portable_git/git-lfs.zip.MD5.txt");
115115

116116
var downloadGitLfsTask = new DownloadTask(CancellationToken.None, environment.FileSystem,
117117
"https://ghfvs-installer.github.com/unity/portable_git/git-lfs.zip", gitLfsArchivePath, retryCount: 1);

0 commit comments

Comments
 (0)