8 lines
115 B
Bash
Executable file
8 lines
115 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
./generate.sh
|
|
|
|
if [ $? -ne 0 ]; then
|
|
echo "generate.sh failed. Commit aborted."
|
|
exit 1
|
|
fi
|