fix ssh command server

This commit is contained in:
Dragan Filipovic 2023-01-02 02:13:02 +01:00
parent 668af68aa1
commit 0172041408
4 changed files with 8 additions and 7 deletions

View file

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