add gm flag
This commit is contained in:
parent
081a3cf1a5
commit
70f9a8ace1
|
|
@ -38402,7 +38402,7 @@ class PoetryCache extends cache_distributor_1.default {
|
|||
const lines = stdout.trim().split('\n');
|
||||
const config = {};
|
||||
for (let line of lines) {
|
||||
line = line.replace(/#.*$/, '');
|
||||
line = line.replace(/#.*$/gm, '');
|
||||
const [key, value] = line.split('=').map(part => part.trim());
|
||||
config[key] = JSON.parse(value);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ class PoetryCache extends CacheDistributor {
|
|||
const config: any = {};
|
||||
|
||||
for (let line of lines) {
|
||||
line = line.replace(/#.*$/, '');
|
||||
line = line.replace(/#.*$/gm, '');
|
||||
|
||||
const [key, value] = line.split('=').map(part => part.trim());
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue