You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by om...@apache.org on 2020/03/27 20:47:49 UTC

[orc] 01/02: Minor fix for docker script.

This is an automated email from the ASF dual-hosted git repository.

omalley pushed a commit to branch branch-1.6
in repository https://gitbox.apache.org/repos/asf/orc.git

commit 3b968478d8e80d84a4b9f799a7457d91a71a9966
Author: Owen O'Malley <om...@apache.org>
AuthorDate: Fri Mar 27 12:51:30 2020 -0700

    Minor fix for docker script.
    
    Signed-off-by: Owen O'Malley <om...@apache.org>
---
 docker/run-all.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker/run-all.sh b/docker/run-all.sh
index 8f1436b..81876f4 100755
--- a/docker/run-all.sh
+++ b/docker/run-all.sh
@@ -29,6 +29,7 @@ function failure {
     grep -h "FAILED " logs/*-test.log
     exit 1
 }
+rm -f logs/pids.txt logs/*.log
 
 start=`date`
 for os in `cat os-list.txt`; do
@@ -36,7 +37,6 @@ for os in `cat os-list.txt`; do
   ( cd $os && docker build -t "orc-$os" . ) > logs/$os-build.log 2>&1 || exit 1
 done
 testStart=`date`
-rm -f logs/pids.txt
 
 for os in `cat os-list.txt`; do
     ./run-one.sh $1 $2 $os > logs/$os-test.log 2>&1 &