修改解压tar错误
Continuous Integration / GitHub Actions Test (push) Failing after 26s
Details
Continuous Integration / GitHub Actions Test (push) Failing after 26s
Details
This commit is contained in:
parent
d962fec1ad
commit
5659b7f144
|
@ -80739,7 +80739,7 @@ async function download(filename) {
|
|||
core.info(`Downloading Docker from ${url}`);
|
||||
const downloadPath = await tc.downloadTool(url);
|
||||
core.info(`Extracting Docker to ${downloadPath}`);
|
||||
const extpath = await tc.extractTar(downloadPath, undefined, 'xzf');
|
||||
const extpath = await tc.extractTar(downloadPath);
|
||||
return path_1.default.join(extpath, 'docker');
|
||||
}
|
||||
exports.download = download;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,6 +16,6 @@ export async function download(filename: string): Promise<string> {
|
|||
core.info(`Downloading Docker from ${url}`)
|
||||
const downloadPath = await tc.downloadTool(url)
|
||||
core.info(`Extracting Docker to ${downloadPath}`)
|
||||
const extpath = await tc.extractTar(downloadPath, undefined, 'xzf')
|
||||
const extpath = await tc.extractTar(downloadPath)
|
||||
return path.join(extpath, 'docker')
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue