From b144d9926fd2f58789b140c4650dbf9dbf2e0171 Mon Sep 17 00:00:00 2001 From: Marc Brooks Date: Tue, 7 Oct 2025 04:57:26 -0500 Subject: [PATCH] Remove the temporary directory after extracting buildkit (#874) --- .devcontainer/install-deps.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/install-deps.sh b/.devcontainer/install-deps.sh index 4435d25b..079c8cdc 100755 --- a/.devcontainer/install-deps.sh +++ b/.devcontainer/install-deps.sh @@ -32,4 +32,5 @@ wget https://github.com/jetkvm/rv1106-system/releases/download/${BUILDKIT_VERSIO sudo mkdir -p /opt/jetkvm-native-buildkit && \ sudo tar --use-compress-program="unzstd --long=31" -xvf buildkit.tar.zst -C /opt/jetkvm-native-buildkit && \ rm buildkit.tar.zst -popd \ No newline at end of file +popd +rm -rf "${BUILDKIT_TMPDIR}" \ No newline at end of file