mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Environment variables are case sensitive under Unix
This commit is contained in:
parent
fe32a00340
commit
28d13ee123
1 changed files with 1 additions and 1 deletions
|
|
@ -1684,7 +1684,7 @@ begin
|
|||
if EqualPos = 0 then Continue;
|
||||
EnvName:= Copy(EnvVar, 1, EqualPos - 1);
|
||||
EnvValue:= Copy(EnvVar, EqualPos + 1, MaxInt);
|
||||
Result:= StringReplace(Result, '$' + EnvName, EnvValue, [rfReplaceAll, rfIgnoreCase]);
|
||||
Result:= StringReplace(Result, '$' + EnvName, EnvValue, [rfReplaceAll]);
|
||||
Inc(Index);
|
||||
end;
|
||||
end;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue