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