mirror of
https://github.com/sebaschi/dotfiles.git
synced 2025-12-29 02:08:27 +01:00
13 lines
319 B
Bash
13 lines
319 B
Bash
log() {
|
|
# Write msg to stderr.
|
|
# Taken from https://github.com/oils-for-unix/oils/blob/master/stdlib/osh/two.sh
|
|
echo "$@" >&2
|
|
}
|
|
|
|
die() {
|
|
# Write error msg with script name and exit with status 1.
|
|
# Taken from https://github.com/oils-for-unix/oils/blob/master/stdlib/osh/two.sh
|
|
log "$@: fatal $@"
|
|
exit 1
|
|
}
|