From 22ec07e22dfd6df9edbc32248a30b90b1fba478e Mon Sep 17 00:00:00 2001 From: Matthias Pigulla Date: Wed, 19 Oct 2022 12:29:59 +0000 Subject: [PATCH] Fix path to `git` binary on Windows runners --- dist/cleanup.js | 2 +- dist/index.js | 2 +- paths.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dist/cleanup.js b/dist/cleanup.js index f978a12..8af40c8 100644 --- a/dist/cleanup.js +++ b/dist/cleanup.js @@ -2835,7 +2835,7 @@ module.exports = (process.env['OS'] != 'Windows_NT') ? { homePath: os.homedir(), sshAgentCmd: 'c://progra~1//git//usr//bin//ssh-agent.exe', sshAddCmd: 'c://progra~1//git//usr//bin//ssh-add.exe', - gitCmd: 'c://progra~1//git//usr//bin//git.exe' + gitCmd: 'c://progra~1//git//bin//git.exe' }; diff --git a/dist/index.js b/dist/index.js index 20f7d61..ea24c73 100644 --- a/dist/index.js +++ b/dist/index.js @@ -2914,7 +2914,7 @@ module.exports = (process.env['OS'] != 'Windows_NT') ? { homePath: os.homedir(), sshAgentCmd: 'c://progra~1//git//usr//bin//ssh-agent.exe', sshAddCmd: 'c://progra~1//git//usr//bin//ssh-add.exe', - gitCmd: 'c://progra~1//git//usr//bin//git.exe' + gitCmd: 'c://progra~1//git//bin//git.exe' }; diff --git a/paths.js b/paths.js index edeb197..fa2c366 100644 --- a/paths.js +++ b/paths.js @@ -12,5 +12,5 @@ module.exports = (process.env['OS'] != 'Windows_NT') ? { homePath: os.homedir(), sshAgentCmd: 'c://progra~1//git//usr//bin//ssh-agent.exe', sshAddCmd: 'c://progra~1//git//usr//bin//ssh-add.exe', - gitCmd: 'c://progra~1//git//usr//bin//git.exe' + gitCmd: 'c://progra~1//git//bin//git.exe' };