diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-12-09 21:46:57 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-12-09 21:46:57 +0100 |
| commit | f91c2b4feb85933bc190712b45788d2f24fe851d (patch) | |
| tree | 86c2fc07b41c697ff4039df797fa90835db696f0 /lib/remotes | |
| parent | bd8c1fa2774b98b22939d60c06a06525691867ce (diff) | |
Remove unnecessary logging
Diffstat (limited to 'lib/remotes')
| -rw-r--r-- | lib/remotes/git.js | 37 |
1 files changed, 10 insertions, 27 deletions
diff --git a/lib/remotes/git.js b/lib/remotes/git.js index 7a67462..11fdab8 100644 --- a/lib/remotes/git.js +++ b/lib/remotes/git.js @@ -1,48 +1,31 @@ const { exec } = require('child_process'); -const { debuglog, promisify } = require('util'); +const { promisify } = require('util'); const internals = { // Promisified functions exec: promisify(exec), - - debuglog: debuglog('blog'), }; module.exports = { canHandle() { + // For the future: actually check if it's a valid git url return true; }, async syncUp(remote, blogDirectory) { - let output = null; - - output = await internals.exec(`cd ${blogDirectory} && git init`); - internals.debuglog(output.stderr); - - output = await internals.exec(`cd ${blogDirectory} && git add .`); - internals.debuglog(output.stderr); - output = await internals.exec(`cd ${blogDirectory} && git commit --allow-empty -m blog-sync-up-${Date.now()}`); - internals.debuglog(output.stderr); - - output = await internals.exec(`cd ${blogDirectory} && git push ${remote} main --force`); - internals.debuglog(output.stderr); + await internals.exec(`cd ${blogDirectory} && git init`); + 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) { - let output = null; - - output = await internals.exec(`cd ${blogDirectory} && git init`); - internals.debuglog(output.stderr); - - output = await internals.exec(`cd ${blogDirectory} && git checkout .`); - internals.debuglog(output.stderr); - - output = await internals.exec(`cd ${blogDirectory} && git clean . -f`); - internals.debuglog(output.stderr); - output = await internals.exec(`cd ${blogDirectory} && git pull ${remote} main`); - internals.debuglog(output.stderr); + await internals.exec(`cd ${blogDirectory} && git init`); + await internals.exec(`cd ${blogDirectory} && git checkout .`); + await internals.exec(`cd ${blogDirectory} && git clean . -f`); + await internals.exec(`cd ${blogDirectory} && git pull ${remote} main`); } } |