mirror of
https://github.com/bentoml/OpenLLM.git
synced 2026-01-22 06:19:35 -05:00
6 lines
195 B
Bash
6 lines
195 B
Bash
#!/usr/bin/env bash
|
|
GIT_ROOT="$(git rev-parse --show-toplevel)"
|
|
cd "$GIT_ROOT" || exit 1
|
|
find . -type f -iname "*.so" -exec \rm -f {} \;
|
|
find . -type d -name "node_modules" -exec \rm -rf "{}" \;
|