From a875da257469a12c5f707d190184bbb873e36f6f Mon Sep 17 00:00:00 2001 From: Bryan MacFarlane Date: Sun, 3 May 2020 19:14:57 -0400 Subject: [PATCH] output info --- dist/index.js | 2 ++ src/installer.ts | 2 ++ 2 files changed, 4 insertions(+) diff --git a/dist/index.js b/dist/index.js index 3c7c17d1..ef34dc0a 100644 --- a/dist/index.js +++ b/dist/index.js @@ -13013,6 +13013,7 @@ function getNode(versionSpec, stable, token) { // // Extract // + console.log('Extracting ...'); let extPath; if (osPlat == 'win32') { let _7zPath = path.join(__dirname, '..', 'externals', '7zr.exe'); @@ -13033,6 +13034,7 @@ function getNode(versionSpec, stable, token) { // // Install into the local tool cache - node extracts with a root folder that matches the fileName downloaded // + console.log('Adding to the cache ...'); toolPath = yield tc.cacheDir(extPath, 'node', info.resolvedVersion); } // diff --git a/src/installer.ts b/src/installer.ts index 29fbc3c5..d05f5d78 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -74,6 +74,7 @@ export async function getNode( // // Extract // + console.log('Extracting ...'); let extPath: string; if (osPlat == 'win32') { let _7zPath = path.join(__dirname, '..', 'externals', '7zr.exe'); @@ -94,6 +95,7 @@ export async function getNode( // // Install into the local tool cache - node extracts with a root folder that matches the fileName downloaded // + console.log('Adding to the cache ...'); toolPath = await tc.cacheDir(extPath, 'node', info.resolvedVersion); }