mirror of
https://github.com/keycloak/keycloak.git
synced 2026-05-26 13:50:48 +00:00
13aabf4022
Signed-off-by: Jon Koops <jonkoops@gmail.com>
11 lines
187 B
Plaintext
Executable File
11 lines
187 B
Plaintext
Executable File
# Get the path the the Husky script.
|
|
DIRNAME="$(dirname "$0")"
|
|
FILE="$DIRNAME/_/husky.sh"
|
|
|
|
# Exit if Husky is not installed.
|
|
if [ ! -f "$FILE" ]; then
|
|
exit 0;
|
|
fi
|
|
|
|
pnpm exec lint-staged
|