]> git.r.bdr.sh - rbdr/blog/commitdiff
Remove unnecessary logging
authorRuben Beltran del Rio <redacted>
Fri, 9 Dec 2022 20:46:57 +0000 (21:46 +0100)
committerRuben Beltran del Rio <redacted>
Fri, 9 Dec 2022 20:46:57 +0000 (21:46 +0100)
lib/remote.js
lib/remotes/git.js

index 569cd254daf02dad73df75fb502b4730b8db5bfc..8b29c4e6f6bf7d91d3c97ac9fea39f0aa1d4fbbc 100644 (file)
@@ -11,22 +11,27 @@ const internals = {
 
 module.exports = {
   async add(remoteConfig, remote) {
+
     await writeFile(remoteConfig, remote);
   },
 
   async remove(remoteConfig) {
+
     await rm(remoteConfig, { force: true })
   },
 
   async syncUp(remoteConfig, blogDirectory) {
+
     await this._executeMethodOnStrategy(remoteConfig, 'syncUp', blogDirectory);
   },
 
   async syncDown(remoteConfig, blogDirectory) {
+
     await this._executeMethodOnStrategy(remoteConfig, 'syncDown', blogDirectory);
   },
 
   async _executeMethodOnStrategy(remoteConfig, method, blogDirectory) {
+
     const remote = await this._ensureConfiguration(remoteConfig);
 
     for (const strategy of internals.strategies) {
@@ -37,6 +42,7 @@ module.exports = {
   },
 
   async _ensureConfiguration(remoteConfig) {
+
     try {
       const configuration = await readFile(remoteConfig, { encoding: 'utf8' });
       return configuration;
index 7a67462a0c6e9baf010a7ea0ce6053520d899722..11fdab89ddda38da508e6545c2e009ccbb49d1cc 100644 (file)
@@ -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`);
   }
 }