fix: use unique install cache folders for betas (#20296)

This commit is contained in:
Zach Bloomquist
2022-03-04 17:22:39 -05:00
committed by GitHub
parent 2e62bbb25f
commit 3c286177cc
28 changed files with 612 additions and 522 deletions

View File

@@ -25,7 +25,7 @@ const formHashFromEnvironment = function () {
} = process
if (env.CIRCLECI) {
return `circle-${env.CIRCLE_BRANCH}-${env.CIRCLE_SHA1}`
return `${env.CIRCLE_BRANCH}-${env.CIRCLE_SHA1}`
}
throw new Error('Do not know how to form unique build hash on this CI')