Add error handling to git-* scripts
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
f9e838ea19
commit
542937d93f
4 changed files with 12 additions and 0 deletions
|
@ -1,5 +1,8 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -o pipefail
|
||||
set -e
|
||||
|
||||
HOOKTYPE=$1
|
||||
|
||||
if ! [ -e Makefile ]; then
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
set -o pipefail
|
||||
set -e
|
||||
|
||||
STEP_COLOR="\033[0;36m"
|
||||
NO_COLOR="\033[0m"
|
||||
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
set -o pipefail
|
||||
set -e
|
||||
|
||||
STEP_COLOR="\033[0;36m"
|
||||
NO_COLOR="\033[0m"
|
||||
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -o pipefail
|
||||
set -e
|
||||
|
||||
STEP_COLOR="\033[0;36m"
|
||||
NO_COLOR="\033[0m"
|
||||
|
||||
|
|
Loading…
Reference in a new issue