Skip to content

Commit

Permalink
- code linting
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Biret <[email protected]>
  • Loading branch information
baywet committed May 1, 2024
1 parent e57c84f commit 393179b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Kiota.Builder/Plugins/PluginsGenerationService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public PluginsGenerationService(OpenApiDocument document, OpenApiUrlTreeNode ope
}
private static readonly OpenAPIRuntimeComparer _openAPIRuntimeComparer = new();
private const string ManifestFileNameSuffix = ".json";
private const string DescriptionRelativePath = "./openapi.yml";
private const string DescriptionRelativePath = "openapi.yml";
public async Task GenerateManifestAsync(CancellationToken cancellationToken = default)
{
// write the decription
Expand Down Expand Up @@ -136,7 +136,7 @@ descriptionExtension is OpenApiDescriptionForModelExtension extension &&
Auth = new AnonymousAuth(),
Spec = new OpenApiRuntimeSpec()
{
Url = openApiDocumentPath.TrimStart('.').TrimStart('/'),
Url = openApiDocumentPath,
},
RunForFunctions = [operation.OperationId]
});
Expand Down

0 comments on commit 393179b

Please sign in to comment.