From 22ebe88b134a1f107c193ee66070a54eb9cd9cd5 Mon Sep 17 00:00:00 2001 From: shaowenchen Date: Tue, 19 Jan 2021 19:30:25 +0800 Subject: [PATCH] format files --- src/ngrok.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ngrok.ts b/src/ngrok.ts index d532a7f..db4f026 100644 --- a/src/ngrok.ts +++ b/src/ngrok.ts @@ -82,7 +82,11 @@ export async function ngrok(NGROK_TOKEN: string): Promise { writeTunnel(cfgFile, NGROK_TOKEN) const cmdList = [ util.format('chmod +x %s/ngrok', execPath), - util.format('%s/ngrok start --all --config %s --log "stdout"', execPath, cfgFile) + util.format( + '%s/ngrok start --all --config %s --log "stdout"', + execPath, + cfgFile + ) ] return new Promise(resolve => { ;(async function () {