From 869f1615cdaa29b47a84f7f4555feb8f1e8e9c6c Mon Sep 17 00:00:00 2001 From: "Achim D. Brucker" Date: Sat, 20 Jul 2019 22:30:31 +0100 Subject: [PATCH] Remove old output directories. --- .ci/Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/.ci/Jenkinsfile b/.ci/Jenkinsfile index c96dbcf..a0162e3 100644 --- a/.ci/Jenkinsfile +++ b/.ci/Jenkinsfile @@ -19,6 +19,7 @@ pipeline { } stage('Build Isabelle/DOF') { steps { + sh 'find -type d -name "output" -exec rm -rf {} \\; || true' sh 'docker run -v $PWD:/DOF logicalhacking:isabelle4dof sh -c "cd /DOF && ./install && isabelle build -D ."' } }