We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66c4018 commit 6e7a59cCopy full SHA for 6e7a59c
2 files changed
.devcontainer/Dockerfile
@@ -45,7 +45,7 @@ FROM system-base AS dev-tools
45
ENV npm_config_cache=/tmp/npm-cache
46
RUN --mount=type=cache,target=/tmp/npm-cache \
47
# 並列npm install(依存関係なし)
48
- npm install -g --prefer-offline @opencode-ai/cli & \
+ npm install -g --prefer-offline opencode-ai & \
49
npm install -g --prefer-offline @openchamber/web & \
50
npm install -g --prefer-offline ecc-universal & \
51
# 並列処理完了待ち
.devcontainer/setup.sh
@@ -56,7 +56,7 @@ declare -a INSTALL_NAMES=()
56
57
if ! command -v opencode &> /dev/null; then
58
echo " OpenCode CLI をインストール中..."
59
- npm install -g @opencode-ai/cli &
+ npm install -g opencode-ai &
60
INSTALL_PIDS+=("$!")
61
INSTALL_NAMES+=("OpenCode CLI")
62
else
0 commit comments