aboutsummaryrefslogtreecommitdiff
path: root/cli.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli.js')
-rwxr-xr-xcli.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/cli.js b/cli.js
index c8220f5..d7a762d 100755
--- a/cli.js
+++ b/cli.js
@@ -40,6 +40,12 @@ if ((idx = params.indexOf("-r")) > -1) {
.then(() => process.exit(0))
.catch(console.error);
break;
+ case "secrets":
+ db.resetSecrets()
+ .then(() => console.info("Reset secrets!"))
+ .then(() => process.exit(0))
+ .catch(console.error);
+ break;
case "questions":
db.resetQuestions()
.then(() => console.info("Reset questions!"))
@@ -90,7 +96,6 @@ if ((idx = params.indexOf("-r")) > -1) {
.then(() => db.initProfiles())
.then(() => console.info("Updating profile!"))
.then(() => db.initQuestions())
- .then(() => console.info("Updating Quotes"))
.then(() => process.exit(0))
.catch(console.error);