10 lines
788 B
JavaScript
10 lines
788 B
JavaScript
let dry = '"auto-commit: $(date "+%A, %Y-%m-%d %I:%M:%S %p") [on 🌸]";'
|
|
const cp = require("child_process");
|
|
const fir = cp.spawnSync('pwsh', ['-Command', 'cd', `"C:\\Users\\Corinthe\\@@site\\content";`, 'git', 'add', '.', ';', 'git', 'commit', '-am', dry, ';', 'git', 'push', ';', 'cd', '..', ';', 'git', 'add', '.', ';', 'git', 'commit', '-am', dry, ';', 'git', 'push'])
|
|
const sec = cp.execSync(`ssh.exe tablet@tablet.sh "echo 'SnowPea' | sudo -u git -S bash -c 'git --git-dir=/home/git/tablet/amethyst.git --work-tree=/var/www/tablet.sh checkout -f main; git --git-dir=/home/git/tablet/amethyst.git --work-tree=/var/www/tablet.sh checkout -f deploy;'"`)
|
|
console.log(fir.stdout.toString())
|
|
console.log(sec.toString())
|
|
setTimeout(() => {
|
|
console.log(fir.stdout.toString())
|
|
}, 5000)
|