Skip to content

Commit 1d16a59

Browse files
committed
fix: Exclude Delphi baseline from run
1 parent cf97f7e commit 1d16a59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utilities/script_builder/Common/scriptbuilder.common.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ procedure TBuilder.BuildRunScriptBash;
527527
begin
528528
Write(GenerateProgressBar(index+1, FConfig.Entries.Count, 50), lineBreak);
529529
if not FConfig.Entries[index].Active then continue;
530-
if FConfig.Entries[index].EntryBinary = cBaselineBinary then continue;
530+
if LowerCase(FConfig.Entries[index].EntryBinary) = cBaselineBinary then continue;
531531
line:= line + GetFunctionRunBash(FConfig.Entries[index]);
532532
end;
533533
line:= line + 'if [ "$1" == "" ];then' + LineEnding;

0 commit comments

Comments
 (0)