mirror of
https://github.com/aljazceru/goose.git
synced 2025-12-18 22:54:24 +01:00
7 lines
222 B
Bash
Executable File
7 lines
222 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 |