Josh Bryans
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
3 deletions
-
entrypoint-user.sh
|
@ -14,10 +14,9 @@ trap exit_handler_user SIGQUIT SIGINT SIGTERM |
|
|
|
|
|
|
|
|
execute_hook_directory() { |
|
|
execute_hook_directory() { |
|
|
for f in $1; do |
|
|
for f in $1; do |
|
|
bash "$f" |
|
|
if ! bash $f |
|
|
if [ $? -ne 0 ] |
|
|
|
|
|
then |
|
|
then |
|
|
echo "Failed running hook \"$f\". exit code $?" |
|
|
echo "Failed running hook \"$f\"" |
|
|
exit 1 |
|
|
exit 1 |
|
|
fi |
|
|
fi |
|
|
done |
|
|
done |
|
|