mirror of
https://github.com/actions/setup-python.git
synced 2026-01-20 04:38:56 +08:00
format and rebuild
This commit is contained in:
parent
c49ecc1361
commit
2934810f3d
2 changed files with 10 additions and 2 deletions
|
|
@ -28,7 +28,11 @@ class PipCache extends CacheDistributor {
|
|||
const execPromisify = utils.promisify(child_process.exec);
|
||||
({stdout: stdout, stderr: stderr} = await execPromisify('pip cache dir'));
|
||||
} else {
|
||||
({stdout: stdout, stderr: stderr, exitCode: exitCode} = await exec.getExecOutput('pip cache dir'));
|
||||
({
|
||||
stdout: stdout,
|
||||
stderr: stderr,
|
||||
exitCode: exitCode
|
||||
} = await exec.getExecOutput('pip cache dir'));
|
||||
}
|
||||
|
||||
if (exitCode && stderr) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue