]> git.eshelyaron.com Git - emacs.git/commitdiff
* test/infra/gitlab-ci.yml (.job-template): Modify find scripts.
authorMichael Albinus <michael.albinus@gmx.de>
Mon, 29 Nov 2021 20:36:51 +0000 (21:36 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Mon, 29 Nov 2021 20:36:51 +0000 (21:36 +0100)
test/infra/gitlab-ci.yml

index 4b97f5f0a840f8f65eb1efd29023377702c42eaf..b0ea6813b300ea9dd6173e70cd3c136c758429a3 100644 (file)
@@ -93,8 +93,8 @@ default:
     # Prepare test artifacts.
     - test -n "$(docker ps -aq -f name=${test_name})" && docker cp ${test_name}:checkout/test ${test_name}
     - test -n "$(docker ps -aq -f name=${test_name})" && docker rm ${test_name}
-    - /usr/bin/find ${test_name} ! -name "*.log" -type f -delete
-    - /usr/bin/find ${test_name} -empty -type d -delete
+    - find ${test_name} ! -name "*.log" -type f -delete
+    - find ${test_name} -type d -depth -exec rmdir {} + 2>/dev/null
 
 .build-template:
   needs: []