We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efa8010 commit 803c44cCopy full SHA for 803c44c
lib/cache-utils.js
@@ -56,7 +56,9 @@ function wellKnownCachePath() {
56
57
export async function getCacheKey(scarbLockfilePath) {
58
const platform = process.env.RUNNER_OS;
59
- const fileHash = await glob.hashFiles(await getScarbLockfilePath(scarbLockfilePath));
+ const fileHash = await glob.hashFiles(
60
+ await getScarbLockfilePath(scarbLockfilePath),
61
+ );
62
63
if (!fileHash) {
64
throw new Error(
0 commit comments