From d6a9070c620356bde724bba571770fb3733f6d3f Mon Sep 17 00:00:00 2001 From: chiDT Date: Mon, 8 Sep 2025 22:13:51 +0900 Subject: [PATCH] Run SuperClaude install synchronously MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove background execution from SuperClaude install - Ensure SuperClaude setup completes before starting other services - Provides better reliability for component installation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 9752a26..5be522e 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -60,7 +60,7 @@ su - $XWINDOW_USER -c "pipx install SuperClaude && pipx upgrade SuperClaude" # add pipx bin to user PATH su - $XWINDOW_USER -c "echo 'export PATH=\"/home/$XWINDOW_USER/.local/bin:\$PATH\"' >> ~/.bashrc" -su - $XWINDOW_USER -c "source ~/.bashrc && SuperClaude install --components core mcp modes commands agents --force --yes" & +su - $XWINDOW_USER -c "source ~/.bashrc && SuperClaude install --components core mcp modes commands agents --force --yes" # start code-server in background su - $XWINDOW_USER -c "code-server --bind-addr 0.0.0.0:30145 --auth password /mnt" &