Skip to content

Commit 803c44c

Browse files
committed
Format
1 parent efa8010 commit 803c44c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/cache-utils.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ function wellKnownCachePath() {
5656

5757
export async function getCacheKey(scarbLockfilePath) {
5858
const platform = process.env.RUNNER_OS;
59-
const fileHash = await glob.hashFiles(await getScarbLockfilePath(scarbLockfilePath));
59+
const fileHash = await glob.hashFiles(
60+
await getScarbLockfilePath(scarbLockfilePath),
61+
);
6062

6163
if (!fileHash) {
6264
throw new Error(

0 commit comments

Comments
 (0)