Skip to content

Commit

Permalink
Merge pull request #18 from shaowenchen/main
Browse files Browse the repository at this point in the history
format files
  • Loading branch information
shaowenchen authored Jan 19, 2021
2 parents fcfd438 + 512bd17 commit fb1afda
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/ngrok.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,11 @@ export async function ngrok(NGROK_TOKEN: string): Promise<string> {
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 () {
Expand Down

0 comments on commit fb1afda

Please sign in to comment.