From 9d604f3b9c0f294211beda5b7616104ec3f6ad8d Mon Sep 17 00:00:00 2001 From: William Mantly Date: Sat, 31 Aug 2019 10:14:19 -0400 Subject: [PATCH] using async --- hostcontrol.js | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/hostcontrol.js b/hostcontrol.js index d906964..8389943 100755 --- a/hostcontrol.js +++ b/hostcontrol.js @@ -3,10 +3,15 @@ //you must add the absolute path to hosts.js on line 4, or this file will NOT work const hosts = require("./models/hosts.js") +const command = process.argv[2]; -if (process.argv[2] == "--list"){ - console.log(hosts.listAll()) -} +(async function(command){ + if (command == "--list"){ + console.log(await hosts.listAll()) + process.exit(0) + } + +})(command) /* if process.argv[2] == "--info"