Compare commits

..

1 commit

Author SHA1 Message Date
Omar Brikaa
56a91c088b
Merge 9a4ea72043 into 59338eee33 2024-09-06 17:38:07 +00:00
6 changed files with 29 additions and 30 deletions

View file

@ -185,7 +185,6 @@ class Runtime {
.split('\n')
.map(line => line.split('=', 2))
.forEach(([key, val]) => {
val = val.replace_all(this.pkgdir, '/runtime');
this._env_vars[key.trim()] = val.trim();
});
}