From 87b1a75df0e21053c24868ce4a4e98305de4ae0d Mon Sep 17 00:00:00 2001 From: Sipho Mokoena Date: Fri, 27 Mar 2026 19:11:29 +0200 Subject: [PATCH] feat: add wokwi-boards to devcontainer post-create script --- .devcontainer/post-create.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/post-create.sh b/.devcontainer/post-create.sh index 5f89baa..dcf1867 100755 --- a/.devcontainer/post-create.sh +++ b/.devcontainer/post-create.sh @@ -16,7 +16,7 @@ done echo "==> Cloning wokwi-libs (shallow, faster than submodules)..." # Only clone the 3 libs we actually use (avr8js, rp2040js, wokwi-elements) # Shallow clone with --depth=1 is much faster than recursive submodule init -for lib in avr8js rp2040js wokwi-elements; do +for lib in avr8js rp2040js wokwi-elements wokwi-boards; do if [ ! -d "wokwi-libs/$lib/.git" ]; then rm -rf "wokwi-libs/$lib" git clone --depth=1 "https://github.com/wokwi/$lib.git" "wokwi-libs/$lib"