1
0
Fork 0
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:
ExMatics HydrogenC 2020-05-01 14:31:33 +08:00 committed by GitHub
parent 4a3871a6c0
commit 7b1f1b2bd1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
} }