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