From 13df686579e9d731c722f087cea96cac54046285 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Mon, 28 Mar 2022 14:23:54 +0100 Subject: [PATCH] Update dist --- dist/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 7a7a59c..48ceb03 100644 --- a/dist/index.js +++ b/dist/index.js @@ -2127,12 +2127,12 @@ function addBinToPath() { if (!fs_1.default.existsSync(gp)) { // some of the hosted images have go install but not profile dir core.debug(`creating ${gp}`); - io.mkdirP(gp); + yield io.mkdirP(gp); } let bp = path_1.default.join(gp, 'bin'); if (!fs_1.default.existsSync(bp)) { core.debug(`creating ${bp}`); - io.mkdirP(bp); + yield io.mkdirP(bp); } core.addPath(bp); added = true;