mirror of
https://github.com/actions/setup-python.git
synced 2024-11-10 05:41:06 +07:00
Parse values from poetry
This commit is contained in:
parent
c275cf49c7
commit
42ed863652
4
dist/setup/index.js
vendored
4
dist/setup/index.js
vendored
@ -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;
|
||||
});
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user