blob: 75ef43ede2864ca68cd7070107abe9fa972bd42f (
plain)
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
|
import { exec } from 'child_process';
import { promisify } from 'util';
const internals = {
// Promisified functions
exec: promisify(exec)
};
export default {
canHandle() {
// For the future: actually check if it's a valid git url
return true;
},
async syncUp(remote, blogDirectory) {
await internals.exec(`cd ${blogDirectory} && git init -b main`);
await internals.exec(`cd ${blogDirectory} && git add .`);
await internals.exec(`cd ${blogDirectory} && git commit --allow-empty -m blog-sync-up-${Date.now()}`);
await internals.exec(`cd ${blogDirectory} && git push ${remote} main --force`);
},
async syncDown(remote, blogDirectory) {
await internals.exec(`cd ${blogDirectory} && git init -b main`);
try {
await internals.exec(`cd ${blogDirectory} && git checkout .`);
}
catch {}
await internals.exec(`cd ${blogDirectory} && git clean . -f`);
await internals.exec(`cd ${blogDirectory} && git pull ${remote} main`);
}
};
|