From df365a56cfa06d600aa5734401f8edfa54354587 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Van=20Canneyt?= Date: Tue, 31 Dec 2024 13:51:43 +0100 Subject: [PATCH] * Use IsYAMLFileName, detect other extensions --- utils/openapi/openapi2pas.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/openapi/openapi2pas.pp b/utils/openapi/openapi2pas.pp index 12c09adf8a..8b635475dd 100644 --- a/utils/openapi/openapi2pas.pp +++ b/utils/openapi/openapi2pas.pp @@ -173,7 +173,7 @@ begin FCodeGen.GenerateClient:=HasOption('c','client'); FCodeGen.AbstractServiceCalls:=HasOption('b','abstract'); FCodeGen.SkipServerServiceImplementationModule:=HasOption('n','no-implementation'); - FInputIsYAML:=HasOption('y','yaml') or SameText(ExtractFileExt(lInputFile),'.yaml'); + FInputIsYAML:=HasOption('y','yaml') or TYAMLParser.IsYamlFileName(lInputFile); FQuiet:=HasOption('q','quiet'); if HasOption('w','write-config') then