From 26ec62beee568ff16830bb45c7ef7ae2bcc60778 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Thu, 16 Oct 2025 22:56:28 +0200 Subject: [PATCH] fixes --- misc/test-tools-func.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/misc/test-tools-func.sh b/misc/test-tools-func.sh index a4bed67e4..dd18f5896 100644 --- a/misc/test-tools-func.sh +++ b/misc/test-tools-func.sh @@ -81,13 +81,13 @@ reload_path() { cleanup_before_test() { # Kill any hanging apt processes killall apt-get apt 2>/dev/null || true - + # Remove apt locks rm -f /var/lib/dpkg/lock-frontend /var/lib/dpkg/lock /var/cache/apt/archives/lock 2>/dev/null || true - - # Remove existing keyrings to avoid overwrite prompts + + # Remove existing keyrings to avoid overwrite prompts rm -f /etc/apt/keyrings/*.gpg 2>/dev/null || true - + # Wait a moment for processes to clean up sleep 1 }