Skip to content

Commit

Permalink
fix checksum
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikmuhs committed Nov 3, 2022
1 parent 26f34fe commit 657bab9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion dist/restore/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -59227,7 +59227,9 @@ async function installCcacheLinux() {
await execBashSudo("apt-get install -y ccache");
}
async function installCcacheWindows() {
await installCcacheFromGitHub("4.7.2", "windows-x86_64", "6e0959c518b0c51fa887035465e7486f50079fe9acf711e5dd7ea2d30a824521",
await installCcacheFromGitHub("4.7.2", "windows-x86_64",
// sha256sum of ccache.exe
"d61defbaabdb75a9bb61b53b08a35bb302bdd938923e3ae83e08ae34a73e7166",
// TODO find a better place
`${external_process_namespaceObject.env.USERPROFILE}\\.cargo\\bin`, "ccache.exe");
}
Expand Down
3 changes: 2 additions & 1 deletion src/restore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ async function installCcacheWindows() : Promise<void> {
await installCcacheFromGitHub(
"4.7.2",
"windows-x86_64",
"6e0959c518b0c51fa887035465e7486f50079fe9acf711e5dd7ea2d30a824521",
// sha256sum of ccache.exe
"d61defbaabdb75a9bb61b53b08a35bb302bdd938923e3ae83e08ae34a73e7166",
// TODO find a better place
`${process.env.USERPROFILE}\\.cargo\\bin`,
"ccache.exe"
Expand Down

0 comments on commit 657bab9

Please sign in to comment.