mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-11 06:31:01 -07:00
7 lines
115 B
Bash
Executable File
7 lines
115 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
# remove npm install/build artifacts
|
|
rm -rf node_modules
|
|
npm run clean --workspaces
|