df2f741a87
### Problem: Observed error on `windows-2022` ([GitHub-hosted runner](https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources)) that `git` command cannot be found. ### Issue: Cannot find git executable on on windows-2022 (GitHub-hosted runner) #136 ### Solution: This path improvement makes use of existing `path.js` to resolve and return correct `git.exe` path for Windows, leaving the executable name as it was for other operating systems. ### Caveats: No idea how and why this `c://progra~1//git//usr//bin//git.exe` mumbo-jumbo works but it apparently did for other executables so figured it should work for `git.exe` (and it does).
16 lines
620 B
JavaScript
16 lines
620 B
JavaScript
const os = require('os');
|
|
|
|
module.exports = (process.env['OS'] != 'Windows_NT') ? {
|
|
// Use getent() system call, since this is what ssh does; makes a difference in Docker-based
|
|
// Action runs, where $HOME is different from the pwent
|
|
homePath: os.userInfo().homedir,
|
|
sshAgentCmd: 'ssh-agent',
|
|
sshAddCmd: 'ssh-add',
|
|
gitCmd: 'git'
|
|
} : {
|
|
// Assuming GitHub hosted `windows-*` runners for now
|
|
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'
|
|
};
|