From f33fab200f211648ff0e1a97d241c4ff8602fab1 Mon Sep 17 00:00:00 2001 From: Sangwon Kim Date: Tue, 12 Nov 2019 18:42:17 +0900 Subject: [PATCH] fix(accounts): Make check() be async --- lib/accounts/check.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/accounts/check.js b/lib/accounts/check.js index df8b167..71e0167 100644 --- a/lib/accounts/check.js +++ b/lib/accounts/check.js @@ -1,6 +1,6 @@ const pathHelper = require("../pathHelper"); const fileNames = require("../fileNames"); -module.exports.check = (opts, options) => { +module.exports.check = async (opts, options) => { console.log("accounts.check", opts.account.id); }; \ No newline at end of file