[NAMING] Add *Path
suffix where applicable
Signed-off-by: Oktawian Chojnacki <oktawian@me.com>
This commit is contained in:
parent
0a5d1715cf
commit
4b29c05a2e
3 changed files with 14 additions and 14 deletions
12
paths.js
12
paths.js
|
@ -4,16 +4,16 @@ 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
|
||||
home: os.userInfo().homedir,
|
||||
sshAgent: 'ssh-agent',
|
||||
sshAdd: 'ssh-add',
|
||||
homePath: os.userInfo().homedir,
|
||||
sshAgentPath: 'ssh-agent',
|
||||
sshAddPath: 'ssh-add',
|
||||
gitPath: 'git'
|
||||
|
||||
} : {
|
||||
|
||||
home: os.homedir(),
|
||||
sshAgent: 'c://progra~1//git//usr//bin//ssh-agent.exe',
|
||||
sshAdd: 'c://progra~1//git//usr//bin//ssh-add.exe',
|
||||
homePath: os.homedir(),
|
||||
sshAgentPath: 'c://progra~1//git//usr//bin//ssh-agent.exe',
|
||||
sshAddPath: 'c://progra~1//git//usr//bin//ssh-add.exe',
|
||||
gitPath: 'c://progra~1//git//usr//bin//git.exe'
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue