Remove try from main

All it does is log and exit which is what the caller will be doing on an
error anyway (see entry).
This commit is contained in:
Asher 2021-05-05 11:56:19 -05:00
parent c96fb65308
commit 20e70cfa05
No known key found for this signature in database
GPG Key ID: D63C1EF81242354A
1 changed files with 2 additions and 8 deletions

View File

@ -10,7 +10,6 @@ import { coderCloudBind } from "./coder_cloud"
import { commit, version } from "./constants"
import { register } from "./routes"
import { humanPath, isFile, open } from "./util"
import { wrapper } from "./wrapper"
export const runVsCodeCli = (args: DefaultedArgs): void => {
logger.debug("forking vs code cli...")
@ -126,13 +125,8 @@ export const runCodeServer = async (args: DefaultedArgs): Promise<void> => {
}
if (args.link) {
try {
await coderCloudBind(serverAddress.replace(/^https?:\/\//, ""), args.link.value)
logger.info(" - Connected to cloud agent")
} catch (err) {
logger.error(err.message)
wrapper.exit(1)
}
await coderCloudBind(serverAddress.replace(/^https?:\/\//, ""), args.link.value)
logger.info(" - Connected to cloud agent")
}
if (args.enable && args.enable.length > 0) {