diff options
author | LarsVomMars | 2021-01-27 14:34:36 +0100 |
---|---|---|
committer | LarsVomMars | 2021-01-27 14:34:36 +0100 |
commit | 833a7316fce5dd2be52255da3d9bc0809ef74413 (patch) | |
tree | ddd2ca5a17c51973803045b15f717d3dcee21874 /cli.js | |
parent | 675a967c7b8d5003cbb497e0b014062becc2f71c (diff) |
Profile characteristic
Diffstat (limited to 'cli.js')
-rwxr-xr-x | cli.js | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -45,6 +45,12 @@ if ((idx = params.indexOf("-r")) > -1) { .then(() => process.exit(0)) .catch(console.error); break; + case "char": + db.resetCharacteristics() + .then(() => console.info("Reset char!")) + .then(() => process.exit(0)) + .catch(console.error); + break; default: console.info("Nothing to do!"); process.exit(0); |