From 166668ca95d6b233a71207d928d103212d2d3b08 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 21 Nov 2024 06:49:00 +0000 Subject: [PATCH] style(pre-commit): autofix --- docker/scripts/cleanup_apt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/scripts/cleanup_apt.sh b/docker/scripts/cleanup_apt.sh index a5e22f5bcb3..0b0d43fea14 100755 --- a/docker/scripts/cleanup_apt.sh +++ b/docker/scripts/cleanup_apt.sh @@ -3,7 +3,7 @@ function cleanup_apt() { local remove_var_lib_apt_lists=$1 apt-get autoremove -y && rm -rf "$HOME"/.cache - if [[ "$remove_var_lib_apt_lists" = true ]]; then + if [[ $remove_var_lib_apt_lists == true ]]; then rm -rf /var/lib/apt/lists/* fi }