diff --git a/index.js b/index.js index 6ceb884..e01d4b5 100644 --- a/index.js +++ b/index.js @@ -65,7 +65,7 @@ module.exports.create = (createOptions) => { return require("./lib/accounts/set").set(opts, options, s3); } } - } + }; return handlers; diff --git a/lib/accounts/setKeypair.js b/lib/accounts/setKeypair.js index aca9d3a..1e67e94 100644 --- a/lib/accounts/setKeypair.js +++ b/lib/accounts/setKeypair.js @@ -19,4 +19,4 @@ module.exports.setKeypair = (opts, options, s3) => { console.error("There was an error creating account keypair:", err.message); return null; }); -} \ No newline at end of file +}; \ No newline at end of file diff --git a/lib/certificates/checkKeypair.js b/lib/certificates/checkKeypair.js index ddecad3..823e3e2 100644 --- a/lib/certificates/checkKeypair.js +++ b/lib/certificates/checkKeypair.js @@ -13,7 +13,7 @@ module.exports.checkKeypair = (opts, options, s3) => { console.log("Successfully retrieved certificate PEM keypair."); return { privateKeyPem: data.Body.toString() - } + }; }).catch((err) => { console.error("There was an error retrieving your certificate PEM keypair:", err.message); return null; diff --git a/lib/certificates/set.js b/lib/certificates/set.js index be80361..8e28def 100644 --- a/lib/certificates/set.js +++ b/lib/certificates/set.js @@ -49,4 +49,4 @@ module.exports.set = (opts, options, s3) => { console.error("There was an error setting the certificates:", err.message); throw err; }); -} \ No newline at end of file +}; \ No newline at end of file diff --git a/lib/pathHelper.js b/lib/pathHelper.js index 6304a3a..c472191 100644 --- a/lib/pathHelper.js +++ b/lib/pathHelper.js @@ -2,7 +2,7 @@ const path = require("path"); const tameWild = (wild) => { return wild.replace(/\*/g, "_"); -} +}; module.exports = {