Added a log script that logs build output to a file in the package directory
This commit is contained in:
parent
25b8e48825
commit
15b97de190
1 changed files with 11 additions and 0 deletions
11
log
Executable file
11
log
Executable 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
|
Loading…
Reference in a new issue