mirror of
https://github.com/google-gemini/gemini-cli
synced 2026-05-24 09:38:34 +00:00
6 lines
115 B
Bash
Executable file
6 lines
115 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
# remove npm install/build artifacts
|
|
rm -rf node_modules
|
|
npm run clean --workspaces
|