From 16ea4e741b1a3766fc82e93a4217fe92ab6b183d Mon Sep 17 00:00:00 2001 From: "Artem V. Ageev" Date: Fri, 24 Jan 2025 22:15:46 +0200 Subject: [PATCH] fix ExtractFileName --- .github/workflows/make.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/make.pas b/.github/workflows/make.pas index a54d022..670180a 100644 --- a/.github/workflows/make.pas +++ b/.github/workflows/make.pas @@ -83,7 +83,7 @@ LibPath: string = '/usr/lib/'; begin OutLog(etDebug, #9'add:'#9 + Path); - if not FileExists(LibPath + ExtractFileNameWithoutExt(Path)) then + if not FileExists(LibPath + ExtractFileName(Path)) then if RunCommand('sudo', ['bash', '-c', 'cp %s %s; ldconfig --verbose'.Format([Path, LibPath])], Result, [poStderrToOutPut]) then OutLog(etInfo, #9'success!') else