You've already forked dasharo-tools
mirror of
https://github.com/Dasharo/dasharo-tools.git
synced 2026-03-06 14:51:33 -08: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)"
|
|
}
|