From 0e9a31bea46804b2f0060db4e9b7d7cff4cc073d Mon Sep 17 00:00:00 2001 From: Clement Cheung Date: Thu, 7 Dec 2023 01:39:04 -0800 Subject: [PATCH] Fix typo deleting entire dir instead of contents --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 0a90441..b1fdc70 100644 --- a/install.sh +++ b/install.sh @@ -41,7 +41,7 @@ chmod +x llvm.sh rm llvm.sh # Remove downloads to keep Docker layer small -apt-get clean -y && rm -rf /var/lib/apt/lists/ +apt-get clean -y && rm -rf /var/lib/apt/lists/* ln -sf /usr/bin/clang-${MAJOR_VERSION} /usr/bin/clang ln -sf /usr/bin/clang++-${MAJOR_VERSION} /usr/bin/clang++