We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d963da0 commit d98b815Copy full SHA for d98b815
2 files changed
.devcontainer/Dockerfile
@@ -118,5 +118,4 @@ RUN set -eux; \
118
clap-validator --version
119
120
# Install wt (git worktree helper)
121
-COPY wt.sh /usr/local/bin/wt
122
-RUN chmod +x /usr/local/bin/wt
+RUN ln -s /workspaces/RetroPlug-main/.devcontainer/wt.sh /usr/local/bin/wt
.devcontainer/wt.sh
@@ -163,4 +163,11 @@ else
163
fi
164
165
echo ""
166
+echo "==> Initializing git submodules..."
167
+git -C "$WT_DIR" submodule update --init --recursive
168
+
169
+echo ""
170
+echo "==> Configuring CMake..."
171
+mkdir -p build
172
+cmake -S . -B build
173
echo "Worktree ready: $WT_DIR"
0 commit comments