host rsync

This commit is contained in:
Dragan Filipovic 2022-12-31 10:14:04 +01:00
parent 3e2f0214fc
commit b65c6688d1
2 changed files with 2 additions and 2 deletions

View file

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