-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsync.js
41 lines (37 loc) · 1.01 KB
/
sync.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
* Copies this project to the Raspberry Pi via rsync.
* Create a JSON file named "sync.config.json" that has these properties:
* - username
* - hostname
* - directory
* - quiet (optional)
*/
const {
username,
hostname,
directory,
quiet = false,
} = require('./sync.config');
const chalk = require('chalk');
const Rsync = require('rsync');
// Build the command
const rsync = Rsync.build({
shell: 'ssh',
flags: 'ahP',
recursive: true,
exclude: ['.git', '.DS_Store', 'node_modules', 'build', 'package-lock.json', '.vscode'],
source: __dirname,
destination: `${username}@${hostname}:${directory}`,
});
console.log(chalk.magenta(`\n🚀\t$ ${rsync.command()}`));
// Execute the command
rsync
.output(data => quiet || console.log(chalk.blue(`📤\t${data.toString().split('\n').slice(0, 1).join('')}`)))
.execute((error, code) => {
if (error) {
console.error(chalk.red('👎\t', error));
}
else {
console.log(chalk.green(`👍\tDone! [exit code ${code}]\n\n`));
}
});