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