aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/cross.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/cross.sh b/scripts/cross.sh
index 2e0f795e..34fef0f7 100755
--- a/scripts/cross.sh
+++ b/scripts/cross.sh
@@ -32,11 +32,10 @@ if [ "$X" == all ]
then
for TARGET in $(list)
do
- mkdir -p output/$TARGET
{
export TARGET
- "$0" $TARGET "$@" 2>&1 || mv output/$TARGET{,.failed}
- } | tee output/$TARGET/log.txt
+ "$0" $TARGET "$@" 2>&1 || mv cross-log-$TARGET.{txt,failed}
+ } | tee cross-log-$TARGET.txt
done
exit