Correctly import path

This commit is contained in:
Matthieu Gautier 2023-12-01 17:22:54 +01:00
parent 4078003c98
commit 0886129cab
2 changed files with 12 additions and 50 deletions

View File

@ -30456,61 +30456,18 @@ module.exports = parseParams
/******/ } /******/ }
/******/ /******/
/************************************************************************/ /************************************************************************/
/******/ /* webpack/runtime/compat get default export */
/******/ (() => {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __nccwpck_require__.n = (module) => {
/******/ var getter = module && module.__esModule ?
/******/ () => (module['default']) :
/******/ () => (module);
/******/ __nccwpck_require__.d(getter, { a: getter });
/******/ return getter;
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __nccwpck_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__nccwpck_require__.o(definition, key) && !__nccwpck_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __nccwpck_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __nccwpck_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/compat */ /******/ /* webpack/runtime/compat */
/******/ /******/
/******/ if (typeof __nccwpck_require__ !== 'undefined') __nccwpck_require__.ab = __dirname + "/"; /******/ if (typeof __nccwpck_require__ !== 'undefined') __nccwpck_require__.ab = __dirname + "/";
/******/ /******/
/************************************************************************/ /************************************************************************/
var __webpack_exports__ = {}; var __webpack_exports__ = {};
// This entry need to be wrapped in an IIFE because it need to be in strict mode. // This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
(() => { (() => {
"use strict";
__nccwpck_require__.r(__webpack_exports__);
/* harmony import */ var path__WEBPACK_IMPORTED_MODULE_0__ = __nccwpck_require__(1017);
/* harmony import */ var path__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__nccwpck_require__.n(path__WEBPACK_IMPORTED_MODULE_0__);
const tc = __nccwpck_require__(8635); const tc = __nccwpck_require__(8635);
const core = __nccwpck_require__(2619); const core = __nccwpck_require__(2619);
const path = __nccwpck_require__(1017);
const os = __nccwpck_require__(2037);
function getInput(name, dflt) { function getInput(name, dflt) {
const val = process.env[`INPUT_${name.replace(/ /g, '_').toUpperCase()}`]; const val = process.env[`INPUT_${name.replace(/ /g, '_').toUpperCase()}`];
@ -30521,7 +30478,7 @@ function getInput(name, dflt) {
} }
function addLocalPath(inputPath) { function addLocalPath(inputPath) {
process.env['PATH'] = `${inputPath}${path__WEBPACK_IMPORTED_MODULE_0__.delimiter}${process.env['PATH']}` process.env['PATH'] = `${inputPath}${path.delimiter}${process.env['PATH']}`
} }
async function run() { async function run() {
@ -30552,7 +30509,9 @@ async function run() {
} }
} }
if (os.platform() === 'win32') {
addLocalPath('C:\\Program Files\\Git\\usr\\bin'); addLocalPath('C:\\Program Files\\Git\\usr\\bin');
}
core.setCommandEcho(true); core.setCommandEcho(true);
run() run()

View File

@ -1,6 +1,7 @@
const tc = require('@actions/tool-cache'); const tc = require('@actions/tool-cache');
const core = require('@actions/core'); const core = require('@actions/core');
import * as path from 'path' const path = require('path');
const os = require('os');
function getInput(name, dflt) { function getInput(name, dflt) {
const val = process.env[`INPUT_${name.replace(/ /g, '_').toUpperCase()}`]; const val = process.env[`INPUT_${name.replace(/ /g, '_').toUpperCase()}`];
@ -42,7 +43,9 @@ async function run() {
} }
} }
if (os.platform() === 'win32') {
addLocalPath('C:\\Program Files\\Git\\usr\\bin'); addLocalPath('C:\\Program Files\\Git\\usr\\bin');
}
core.setCommandEcho(true); core.setCommandEcho(true);
run() run()