mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-15 06:44:10 +02:00
Update Environment.bf
This commit is contained in:
parent
4a3871a6c0
commit
7b1f1b2bd1
1 changed files with 3 additions and 3 deletions
|
@ -120,7 +120,7 @@ namespace System
|
||||||
for (let kv in envVars)
|
for (let kv in envVars)
|
||||||
{
|
{
|
||||||
keys[idx] = kv.key;
|
keys[idx] = kv.key;
|
||||||
values[idx] = kv.value;
|
values[idx] = *kv.value;
|
||||||
++idx;
|
++idx;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -158,7 +158,7 @@ namespace System
|
||||||
for (let kv in envVars)
|
for (let kv in envVars)
|
||||||
{
|
{
|
||||||
keys[idx] = kv.key;
|
keys[idx] = kv.key;
|
||||||
values[idx] = kv.value;
|
values[idx] = *kv.value;
|
||||||
++idx;
|
++idx;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue