We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5403dab commit 70415f9Copy full SHA for 70415f9
src/rsyncCli.js
@@ -4,7 +4,8 @@ const { exec, execSync } = require("child_process");
4
const validateRsync = (callback = () => {}) => {
5
const rsyncCli = commandExists("rsync");
6
if (rsyncCli) {
7
- console.log('⚠️ [CLI] Rsync exists', execSync("rsync --version"));
+ const rsyncVersion = execSync("rsync --version");
8
+ console.log('⚠️ [CLI] Rsync exists', rsyncVersion);
9
return callback();
10
}
11
0 commit comments