mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
6 lines
116 B
Text
6 lines
116 B
Text
# Print a message to stderr and exit
|
|
# usage: ynh_die MSG [RETCODE]
|
|
ynh_die() {
|
|
echo "$1" 1>&2
|
|
exit "${2:-1}"
|
|
}
|