ssh-agent-action/cleanup.js
2024-01-30 20:30:08 +01:00

12 lines
412 B
JavaScript

const core = require('@actions/core');
const { execFileSync } = require('child_process');
const { sshAgentCmdDefault } = require('./paths.js');
try {
// Kill the started SSH agent
console.log('Stopping SSH agent');
execFileSync(sshAgentCmdDefault, ['-k'], { stdio: 'inherit' });
} catch (error) {
console.log(error.message);
console.log('Error stopping the SSH agent, proceeding anyway');
}