From e5ae6a124ad566684405f8dd9ccf888402da7ae2 Mon Sep 17 00:00:00 2001 From: calebboyd Date: Mon, 27 Sep 2021 09:46:03 -0500 Subject: [PATCH] chore: any error in build log --- tasks/docker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/docker.ts b/tasks/docker.ts index c63d3f6..707e511 100644 --- a/tasks/docker.ts +++ b/tasks/docker.ts @@ -50,7 +50,7 @@ export async function runDockerBuild(target: NexeTarget) { output.push(await execa(`docker run -d --name nexe nexe-docker sh`, { shell: true })) output.push(await execa(`docker cp nexe:/out out`, { shell: true })) output.push(await execa(`docker rm nexe`, { shell: true })) - } catch (e) { + } catch (e: any) { console.log('Error running docker') appendFileSync(outFilename, e.message) } finally {