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 20b4fc1 commit 8e949ecCopy full SHA for 8e949ec
generator/cmd/findbasepath.ts
@@ -12,17 +12,17 @@ executeSynchronous(async () => {
12
const prPrefix = process.argv[3];
13
let basePath = prName.replace(prPrefix, "");
14
15
- // format basePath
+ // format basePath.
16
basePath = `${basePath}/resource-manager`;
17
18
const autogenEntries = findAutogenEntries(basePath);
19
20
if (autogenEntries.length === 0) {
21
- //not found
+ // not onboarded in autogeneration
22
console.log("false");
23
return;
24
}
25
26
console.log(`Base path: '${basePath} found in autogenlist.`);
27
console.log("true");
28
-});
+});
0 commit comments