mirror of
https://github.com/webfactory/ssh-agent.git
synced 2024-11-21 16:50:50 +00:00
11 lines
343 B
JavaScript
11 lines
343 B
JavaScript
const core = require('@actions/core')
|
|
const { execSync } = require('child_process')
|
|
|
|
try {
|
|
// Kill the started SSH agent
|
|
console.log('Stopping SSH agent')
|
|
execSync('kill ${SSH_AGENT_PID}', { stdio: 'inherit' })
|
|
} catch (error) {
|
|
console.log(error.message);
|
|
console.log('Error stopping the SSH agent, proceeding anyway');
|
|
}
|