mirror of
https://github.com/webfactory/ssh-agent.git
synced 2025-06-28 05:33:45 +00:00
Ignore failures when trying to kill the ssh-agent
(#33)
This commit is contained in:
parent
5ef9e0334a
commit
ef0ce0cab8
7 changed files with 286 additions and 111 deletions
|
@ -6,5 +6,6 @@ try {
|
|||
console.log('Stopping SSH agent')
|
||||
execSync('kill ${SSH_AGENT_PID}', { stdio: 'inherit' })
|
||||
} catch (error) {
|
||||
core.setFailed(error.message)
|
||||
console.log(error.message);
|
||||
console.log('Error stopping the SSH agent, proceeding anyway');
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue