From ac36ca4405cc8e5f444b21a034d076c1c13cd627 Mon Sep 17 00:00:00 2001 From: Guillaume Clochard Date: Thu, 29 Aug 2019 17:08:06 +0200 Subject: [PATCH] Small fix for the tool-cache extract example (#99) * Fix tool-cache extract example * Use extractZip or extract7z in tool-cache example fix --- packages/tool-cache/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/tool-cache/README.md b/packages/tool-cache/README.md index 4c360ba9..92ec54af 100644 --- a/packages/tool-cache/README.md +++ b/packages/tool-cache/README.md @@ -22,11 +22,11 @@ These can then be extracted in platform specific ways: const tc = require('@actions/tool-cache'); if (process.platform === 'win32') { - tc.downloadTool('http://nodejs.org/dist/v12.7.0/node-v12.7.0-win-x64.zip'); + const node12Path = tc.downloadTool('http://nodejs.org/dist/v12.7.0/node-v12.7.0-win-x64.zip'); const node12ExtractedFolder = await tc.extractZip(node12Path, 'path/to/extract/to'); - + // Or alternately - tc.downloadTool('http://nodejs.org/dist/v12.7.0/node-v12.7.0-win-x64.7z'); + const node12Path = tc.downloadTool('http://nodejs.org/dist/v12.7.0/node-v12.7.0-win-x64.7z'); const node12ExtractedFolder = await tc.extract7z(node12Path, 'path/to/extract/to'); } else {