9 lines
100 B
Bash
Executable file
9 lines
100 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
set -eu
|
|
|
|
CI="${CI:-false}"
|
|
|
|
if [ "$CI" != "true" ]; then
|
|
pnpm husky install
|
|
fi
|