rsyncVersion

main
Dragan Filipovic 2022-12-31 10:02:46 +01:00
parent 5403dab9a0
commit 70415f9f9d
1 changed files with 2 additions and 1 deletions

View File

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