From 01d2ff050837bbd473286dd4ba780d2f37b99b49 Mon Sep 17 00:00:00 2001 From: Poltern <2363951+Poltern@users.noreply.github.com> Date: Tue, 6 Aug 2024 21:09:29 +0500 Subject: [PATCH] cleanup: Remove hidden files in /tmp Some test suite may create files of which the name starts with a dot. These files are "hidden" and they won't be matched with the /tmp/* wildcard. --- chapter08/cleanup.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapter08/cleanup.xml b/chapter08/cleanup.xml index fde81e7..69e6ff1 100644 --- a/chapter08/cleanup.xml +++ b/chapter08/cleanup.xml @@ -12,7 +12,7 @@ Наконец, удалите некоторые лишние файлы, оставшиеся после запуска тестов: -rm -rf /tmp/* + rm -rf /tmp/{*,.*} Также в каталогах /usr/lib и /usr/libexec есть несколько файлов с расширением .la. Это файлы архива libtool. Как было сказано ранее,