Skip to content

Commit 70415f9

Browse files
committed
rsyncVersion
1 parent 5403dab commit 70415f9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/rsyncCli.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ const { exec, execSync } = require("child_process");
44
const validateRsync = (callback = () => {}) => {
55
const rsyncCli = commandExists("rsync");
66
if (rsyncCli) {
7-
console.log('⚠️ [CLI] Rsync exists', execSync("rsync --version"));
7+
const rsyncVersion = execSync("rsync --version");
8+
console.log('⚠️ [CLI] Rsync exists', rsyncVersion);
89
return callback();
910
}
1011

0 commit comments

Comments
 (0)