Files
OpenLLM/clean.sh
GutZuFusss 4cad367ab5 feat(contrib): ClojureScript UI (#89)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: aarnphm-ec2-dev <29749331+aarnphm@users.noreply.github.com>
2023-08-16 03:30:44 -04:00

6 lines
193 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 "{}" \;