We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15531c8 commit d108a72Copy full SHA for d108a72
evals/scripts/setup.sh
@@ -28,8 +28,11 @@ build_extension() {
28
echo "🔨 Building the Roo Code extension..."
29
cd ..
30
mkdir -p bin
31
- pnpm build --out ../bin/roo-code-$(git rev-parse --short HEAD).vsix || exit 1
32
- code --install-extension bin/roo-code-$(git rev-parse --short HEAD).vsix || exit 1
+ npm run install-extension -- --silent --no-audit || exit 1
+ npm run install-webview -- --silent --no-audit || exit 1
33
+ npm run install-e2e -- --silent --no-audit || exit 1
34
+ npx vsce package --out bin/roo-code-latest.vsix || exit 1
35
+ code --install-extension bin/roo-code-latest.vsix || exit 1
36
cd evals
37
}
38
0 commit comments