Parse values from poetry

This commit is contained in:
Patrick Arminio 2021-11-27 17:17:01 +00:00
parent c275cf49c7
commit 42ed863652
No known key found for this signature in database
GPG Key ID: 0B13AD30354F6EBE
2 changed files with 10 additions and 10 deletions

4
dist/setup/index.js vendored
View File

@ -38798,7 +38798,7 @@ class PoetryCache extends cache_distributor_1.default {
const cacheDir = poetryConfig['cache-dir'];
const virtualenvsPath = poetryConfig['virtualenvs.path'].replace('{cache-dir}', cacheDir);
const paths = [virtualenvsPath];
if (poetryConfig['virtualenvs.in-project'] === 'true') {
if (poetryConfig['virtualenvs.in-project'] === true) {
paths.push(path.join(process.cwd(), '.venv'));
}
return paths;
@ -38830,7 +38830,7 @@ class PoetryCache extends cache_distributor_1.default {
for (let line of lines) {
line = line.replace(/#.*$/, '');
const [key, value] = line.split('=').map(part => part.trim());
config[key] = value;
config[key] = JSON.parse(value);
}
return config;
});

View File

@ -24,7 +24,7 @@ class PoetryCache extends CacheDistributor {
const paths = [virtualenvsPath];
if (poetryConfig['virtualenvs.in-project'] === 'true') {
if (poetryConfig['virtualenvs.in-project'] === true) {
paths.push(path.join(process.cwd(), '.venv'));
}
@ -57,21 +57,21 @@ class PoetryCache extends CacheDistributor {
const lines = stdout.trim().split(os.EOL);
const config = {} as {
'cache-dir': string;
'virtualenvs.in-project': string;
'virtualenvs.path': string;
};
const config: any = {};
for (let line of lines) {
line = line.replace(/#.*$/, '');
const [key, value] = line.split('=').map(part => part.trim());
config[key as keyof typeof config] = value;
config[key] = JSON.parse(value);
}
return config;
return config as {
'cache-dir': string;
'virtualenvs.in-project': boolean;
'virtualenvs.path': string;
};
}
}