mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 00:15:32 +00:00
Merge pull request #15156 from keymanapp/fix/windows/handle-keyman-root-forward-slash
fix(windows): handle forward slash for KEYMAN_ROOT env var
This commit is contained in:
commit
89597cf8a2
1 changed files with 1 additions and 1 deletions
|
|
@ -395,7 +395,7 @@ var
|
|||
begin
|
||||
// On developer machines, if we are running within the source repo, then use
|
||||
// those paths
|
||||
keyman_root := GetEnvironmentVariable('KEYMAN_ROOT');
|
||||
keyman_root := GetEnvironmentVariable('KEYMAN_ROOT').Replace('/', '\');
|
||||
if (keyman_root <> '') and SameText(keyman_root, ParamStr(0).Substring(0, keyman_root.Length)) then
|
||||
begin
|
||||
// Source repo, bin folder
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue