mirror of
https://github.com/bentoml/OpenLLM.git
synced 2026-01-19 12:58:00 -05:00
Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com> Signed-off-by: Aaron Pham <29749331+aarnphm@users.noreply.github.com> Signed-off-by: GutZuFusss <leon.ikinger@googlemail.com> Co-authored-by: GutZuFusss <leon.ikinger@googlemail.com>
6 lines
194 B
Bash
6 lines
194 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 -iname "node_modules" -exec rm -rf "{}" \;
|