We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 132b5dc commit 721e67dCopy full SHA for 721e67d
packages/apify/src/utils.ts
@@ -55,7 +55,8 @@ export function checkCrawleeVersion() {
55
];
56
57
for (const path of paths) {
58
- if (!pathExistsSync(path)) {
+ // ignore unresolved paths or paths that are not in the project directory
59
+ if (!pathExistsSync(path) || !path.startsWith(process.cwd())) {
60
continue;
61
}
62
0 commit comments