chore: any error in build log

This commit is contained in:
calebboyd
2021-09-27 09:46:03 -05:00
parent 4cd04d1b0c
commit e5ae6a124a
+1 -1
View File
@@ -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 {