From 15b97de190efc610404ee9f28a0a46b195524fbc Mon Sep 17 00:00:00 2001 From: SMLinux Date: Sat, 29 Jan 2022 10:38:23 +0530 Subject: [PATCH] Added a log script that logs build output to a file in the package directory --- log | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 log diff --git a/log b/log new file mode 100755 index 0000000..5fb6ae9 --- /dev/null +++ b/log @@ -0,0 +1,11 @@ +#!/bin/sh +# Wrapper to redirect build output of an individual .SMBuild to a log file + +# Disable colours in the build summary. It looks nice in the terminal but not so good inside the actual build log. +SM_COLOURS=0 +export SM_COLOURS + +while [ $# -gt 0 ]; do + exec "$1" 2>&1 | tee -a "$1".buildlog + break +done