mirror of
https://github.com/easingthemes/ssh-deploy.git
synced 2024-11-12 13:48:07 +00:00
{stdio: 'inherit'}
This commit is contained in:
parent
70415f9f9d
commit
4b6681d89c
@ -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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user