{stdio: 'inherit'}

main
Dragan Filipovic 2022-12-31 10:04:57 +01:00
parent 70415f9f9d
commit 4b6681d89c
1 changed files with 1 additions and 1 deletions

View File

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