mirror of
https://github.com/meshtastic/web.git
synced 2025-12-23 15:51:28 -05:00
12 lines
261 B
Bash
Executable File
12 lines
261 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$SKIP_SIMPLE_GIT_HOOKS" = "1" ]; then
|
|
echo "[INFO] SKIP_SIMPLE_GIT_HOOKS is set to 1, skipping hook."
|
|
exit 0
|
|
fi
|
|
|
|
if [ -f "$SIMPLE_GIT_HOOKS_RC" ]; then
|
|
. "$SIMPLE_GIT_HOOKS_RC"
|
|
fi
|
|
|
|
# cd packages/web && bun run lint && bun run format |