mirror of
https://github.com/lobehub/sd-webui-lobe-theme.git
synced 2026-01-09 06:23:44 +08:00
10 lines
170 B
Bash
Executable File
10 lines
170 B
Bash
Executable File
#!/usr/bin/env sh
|
|
# gitmoji as a commit hook
|
|
if npx -v >&/dev/null
|
|
then
|
|
exec < /dev/tty
|
|
npx -c "gitmoji --hook $1 $2"
|
|
else
|
|
exec < /dev/tty
|
|
gitmoji --hook $1 $2
|
|
fi |