We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e97d335 commit 59d93aeCopy full SHA for 59d93ae
1 file changed
lib/gather/cache.js
@@ -3,7 +3,10 @@ const getRepoInfo = require('git-repo-info');
3
4
const gitInfo = getRepoInfo();
5
6
-const cachePath = `ember-codemods-telemetry-helpers-${gitInfo.sha}-${process.cwd()}`;
+const cwd = process.cwd().replace(':', '꞉');
7
+
8
+const cachePath = `ember-codemods-telemetry-helpers-${gitInfo.sha}-${cwd}`;
9
10
const cache = new Cache(cachePath);
11
12
module.exports = cache;
0 commit comments