mirror of
https://github.com/actions/setup-python.git
synced 2024-11-10 05:41:06 +07:00
Fix output for prerelease version of poetry (#409)
This commit is contained in:
parent
397252c582
commit
3f82819745
2
dist/setup/index.js
vendored
2
dist/setup/index.js
vendored
@ -63920,7 +63920,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
Block a user