forked from TrueCloudLab/frostfs-dev-env
7 lines
66 B
Bash
7 lines
66 B
Bash
|
set -eo pipefail
|
||
|
|
||
|
die() {
|
||
|
echo "$(caller 0):" "$*" >&2
|
||
|
exit 1
|
||
|
}
|