Add ssh script execution option

This commit is contained in:
Dragan Filipovic 2023-01-01 14:06:43 +01:00
parent 40f855a08b
commit 28bda61b75
4 changed files with 10 additions and 3 deletions

View file

@ -5,7 +5,7 @@ const validateRsync = (callback = () => {}) => {
const rsyncCli = commandExists("rsync");
if (rsyncCli) {
console.log('⚠️ [CLI] Rsync exists');
const rsyncVersion = execSync("rsync --version", { stdio: 'inherit' });
execSync("rsync --version", { stdio: 'inherit' });
return callback();
}