Skip to content

Commit fa81a88

Browse files
author
Robert Jackson
committed
Add process.cwd() to telemetry cache key.
1 parent 04b231e commit fa81a88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/cache.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ const Cache = require("sync-disk-cache");
22
const getRepoInfo = require("git-repo-info");
33

44
const gitInfo = getRepoInfo();
5-
const cache = new Cache(`native-class-codemod-${gitInfo.sha}`);
5+
const cache = new Cache(`native-class-codemod-${gitInfo.sha}-${process.cwd()}`);
66

77
module.exports = cache;

0 commit comments

Comments
 (0)