10 lines
165 B
Bash
Executable file
10 lines
165 B
Bash
Executable file
#!/usr/bin/env sh
|
|
export NVM_DIR="$HOME/.nvm"
|
|
|
|
if [ -s "$NVM_DIR/nvm.sh" ]; then
|
|
. "$NVM_DIR/nvm.sh"
|
|
fi
|
|
|
|
. "$(dirname -- "$0")/_/husky.sh"
|
|
|
|
terraform fmt -check
|