Added a log script that logs build output to a file in the package directory

This commit is contained in:
SMLinux 2022-01-29 10:38:23 +05:30
parent 25b8e48825
commit 15b97de190

11
log Executable file
View file

@ -0,0 +1,11 @@
#!/bin/sh
# Wrapper to redirect build output of an individual <package>.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