mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-04 00:17:06 +00:00
21 lines
436 B
Bash
21 lines
436 B
Bash
#
|
|
# source all lib scripts
|
|
#
|
|
# eg source "tests/lib/all.sh"
|
|
#
|
|
# failure to load any script is fatal!
|
|
|
|
D=$(dirname "$BASH_SOURCE")
|
|
|
|
. "$D/color-output.sh" || exit 1
|
|
. "$D/locations.sh" || exit 2
|
|
. "$D/misc.sh" || exit 3
|
|
. "$D/rest.sh" || exit 4
|
|
. "$D/system.sh" || exit 5
|
|
. "$D/carddav.sh" || exit 6
|
|
|
|
. "$D/populate.sh" || exit 7
|
|
. "$D/installed-state.sh" || exit 8
|
|
. "$D/totp.sh" || exit 9
|
|
|