Skip to content

Commit

Permalink
Match message with A/C
Browse files Browse the repository at this point in the history
  • Loading branch information
thewahome authored Nov 18, 2024
1 parent abfcf86 commit 920c55a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vscode/microsoft-kiota/src/utilities/deep-linking.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function transformToGenerationConfig(deepLinkParams: Partial<IntegrationP
}
generationConfig.outputPath =
(deepLinkParams.source && deepLinkParams.source?.toLowerCase() === 'ttk')
? determineOutputPath(deepLinkParams)
? determineOutputPath(deepLinkParams)
: undefined;
}
return generationConfig;
Expand Down Expand Up @@ -111,7 +111,7 @@ export function validateDeepLinkQueryParams(queryParameters: Partial<Integration

if (projectPath && !path.isAbsolute(projectPath)) {
projectPath = undefined;
errormsg.push(`The projectPath should be an absolute path. Provided value: ${queryParameters["projectPath"]}`);
errormsg.push(`A relative paths is not supported for the projectPath parameter`);
}

validQueryParams = {
Expand Down

0 comments on commit 920c55a

Please sign in to comment.