From 2751ed3a15012eadf7fdf0c801f96dff92f788be Mon Sep 17 00:00:00 2001 From: Sparchatus Date: Wed, 4 May 2022 15:43:21 +0000 Subject: [PATCH] Store full log in file --- .vscode/tasks.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index ee2776d..2be3374 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -13,7 +13,7 @@ { "label": "Build and Run QEMU", "type": "shell", - "command": "cd ${BFBUILD_QEMU} && make qemu_a57", + "command": "cd ${BFBUILD_QEMU} && make qemu_a57 | tee ${BFBUILD_QEMU}/full_output.log", "group": { "kind": "build", "isDefault": true @@ -31,7 +31,7 @@ { "label": "Build and Run Toradex", "type": "shell", - "command": "cd ${BFBUILD} && make -j7 imx8x && make usbboot_imx8x", + "command": "cd ${BFBUILD} && make -j7 imx8x && make usbboot_imx8x | tee ${BFBUILD}/full_output.log", "group": { "kind": "build", "isDefault": true