mirror of
https://github.com/openclaw/openclaw.git
synced 2026-02-15 22:59:29 +00:00
10 lines
255 B
Bash
Executable File
10 lines
255 B
Bash
Executable File
#!/bin/sh
|
|
FILES=$(git diff --cached --name-only --diff-filter=ACMR | sed 's| |\\ |g')
|
|
[ -z "$FILES" ] && exit 0
|
|
|
|
echo "$FILES" | xargs pnpm lint --fix
|
|
echo "$FILES" | xargs pnpm format --no-error-on-unmatched-pattern
|
|
echo "$FILES" | xargs git add
|
|
|
|
exit 0
|