From 7aa3e95001ed5078678a8bf348e8d617387daed8 Mon Sep 17 00:00:00 2001 From: Patrick Arminio Date: Wed, 30 Mar 2022 16:46:59 -0500 Subject: [PATCH] Update dist --- dist/setup/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dist/setup/index.js b/dist/setup/index.js index 4aa17f7..c009f8e 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -38794,7 +38794,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { }; Object.defineProperty(exports, "__esModule", { value: true }); const glob = __importStar(__webpack_require__(281)); -const os = __importStar(__webpack_require__(87)); const path = __importStar(__webpack_require__(622)); const exec = __importStar(__webpack_require__(986)); const cache_distributor_1 = __importDefault(__webpack_require__(435)); @@ -38836,7 +38835,7 @@ class PoetryCache extends cache_distributor_1.default { if (exitCode && stderr) { throw new Error('Could not get cache folder path for poetry package manager'); } - const lines = stdout.trim().split(os.EOL); + const lines = stdout.trim().split('\n'); const config = {}; for (let line of lines) { line = line.replace(/#.*$/, '');