-
Notifications
You must be signed in to change notification settings - Fork 0
/
sync.js
42 lines (37 loc) · 952 Bytes
/
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
42
/**
* 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 = "pi";
const hostname = "rpi.local";
const directory = "/home/pi/led";
const quiet = false;
const Rsync = require("rsync");
// Build the command
const rsync = Rsync.build({
shell: "ssh",
flags: "ahP",
recursive: true,
exclude: [".git", ".DS_Store", "node_modules"],
source: __dirname + "/*",
destination: `${username}@${hostname}:${directory}`,
});
console.log(`\n🚀\t$ ${rsync.command()}`);
// Execute the command
rsync
.output(
(data) =>
quiet ||
console.log(`📤\t${data.toString().split("\n").slice(0, 1).join("")}`)
)
.execute((error, code) => {
if (error) {
console.error("👎\t", error);
} else {
console.log(`👍\tDone! [exit code ${code}]\n\n`);
}
});