Skip to content

Commit 839b9ed

Browse files
author
Joachim Marder
committed
TSettings.GetRibbonCompilerPath no longer returns a trailing backslash, this can lead to escaping problems with a following quote
1 parent 800d6aa commit 839b9ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Designer/Classes/Settings.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ procedure TSettings.DetectTools();
153153

154154
function TSettings.GetRibbonCompilerPath: String;
155155
begin
156-
Exit(ExtractFilePath(FRibbonCompilerPath))
156+
Exit(ExcludeTrailingPathDelimiter(ExtractFilePath(FRibbonCompilerPath)))
157157
end;
158158

159159
class constructor TSettings.Create;

0 commit comments

Comments
 (0)