From c1cab856a8fc61e672bd30270cdd3f6814fe2c04 Mon Sep 17 00:00:00 2001 From: Murat Kilivan Date: Tue, 21 Jul 2026 11:45:35 +0100 Subject: [PATCH] Restore .devcontainer/context directory removed by #1422 (#1516) PR #1422 deleted the only file in .devcontainer/context/ (reinstall-cmake.sh) as unused, which silently removed the directory itself since git doesn't track empty ones. Every devcontainer.json under .devcontainer/ (root and all compiler variants) references this path as its Docker build context, so opening the project in a dev container now fails immediately with: ERROR: failed to build: unable to prepare context: path ".../.devcontainer/context" not found Add a .gitkeep placeholder to keep the directory present in git so the build context resolves again. Co-authored-by: John Wellbelove --- .devcontainer/context/.gitkeep | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 .devcontainer/context/.gitkeep diff --git a/.devcontainer/context/.gitkeep b/.devcontainer/context/.gitkeep new file mode 100644 index 00000000..e69de29b