add sshCmdArgs option

This commit is contained in:
Dragan Filipovic 2023-01-02 01:33:48 +01:00
parent a16ae38e86
commit a285ca6ac0
5 changed files with 17 additions and 14 deletions

View file

@ -9,7 +9,7 @@ const run = () => {
const {
source, remoteUser, remoteHost, remotePort,
deployKeyName, sshPrivateKey,
args, exclude,
args, exclude, sshCmdArgs,
scriptBefore, scriptAfter,
sshServer
} = inputs;
@ -31,7 +31,7 @@ const run = () => {
/* eslint-disable object-property-newline */
sshDeploy({
source, sshServer, exclude, remotePort,
privateKey, args, callback
privateKey, args, sshCmdArgs, callback
});
};