From 4da959597d10ba12cd0de9654fc482421ec2ce40 Mon Sep 17 00:00:00 2001 From: Andrejus Date: Wed, 24 Dec 2025 03:28:05 +0200 Subject: [PATCH] fix: run apt for codespace --- script/install.d/11-apt.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/script/install.d/11-apt.sh b/script/install.d/11-apt.sh index a40414b..51e954c 100644 --- a/script/install.d/11-apt.sh +++ b/script/install.d/11-apt.sh @@ -5,9 +5,6 @@ # (distros with apt only) Install core apt packages. # -# Skip in Codespaces (pre-installed in universal image) -[[ "$DOTS_ENV" == "codespaces" ]] && { log_pass "Skipping in Codespaces"; return 0; } - # apt only [[ "$DOTS_PKG" != "apt" ]] && { log_warn "Skipping: Not using apt"; return 0; }