mirror of
https://github.com/Dasharo/dasharo-tools.git
synced 2026-06-13 10:16:14 -07:00
14 lines
222 B
Bash
14 lines
222 B
Bash
#/usr/bin/env bash
|
|
|
|
errorExit() {
|
|
errorMessage="$1"
|
|
echo "$errorMessage"
|
|
exit 1
|
|
}
|
|
|
|
errorCheck() {
|
|
errorCode=$?
|
|
errorMessage="$1"
|
|
[ "$errorCode" -ne 0 ] && errorExit "$errorMessage : ($errorCode)"
|
|
}
|