mirror of
https://github.com/aaif-goose/goose.git
synced 2026-07-03 14:10:03 +02:00
8 lines
223 B
Bash
Executable File
8 lines
223 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
# Only auto-format desktop TS code if relevant files are modified
|
|
if git diff --cached --name-only | grep -q "^ui/desktop/"; then
|
|
. "$(dirname -- "$0")/_/husky.sh"
|
|
cd ui/desktop && npx lint-staged
|
|
fi
|