Skip to content
Prev Previous commit
Next Next commit
Format
  • Loading branch information
Danny McCormick committed May 29, 2019
commit 7e6cc162cc8ec44bd83c8909cb66071cae3c441e
8 changes: 7 additions & 1 deletion packages/tool-cache/src/tool-cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,13 @@ export async function extractZip(file: string, dest?: string): Promise<string> {
]
await exec(`"${powershellPath}"`, args)
} else {
const unzipPath = path.join(__dirname, '..', 'scripts', 'externals', 'unzip')
const unzipPath = path.join(
__dirname,
'..',
'scripts',
'externals',
'unzip'
)
await exec(`"${unzipPath}"`, [file], {cwd: dest})
}

Expand Down