mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-05 00:27:25 +00:00
21 lines
497 B
Bash
21 lines
497 B
Bash
#
|
|
# source all lib scripts
|
|
#
|
|
# from your script, supply the path to this directory as the first argument
|
|
#
|
|
# eg source "tests/lib/all.sh" "tests/lib"
|
|
#
|
|
# failure to load any script is fatal!
|
|
|
|
. "$1/color-output.sh" || exit 1
|
|
. "$1/locations.sh" || exit 2
|
|
. "$1/misc.sh" || exit 3
|
|
. "$1/rest.sh" || exit 4
|
|
. "$1/system.sh" || exit 5
|
|
. "$1/carddav.sh" || exit 6
|
|
|
|
. "$1/populate.sh" || exit 7
|
|
. "$1/installed-state.sh" || exit 8
|
|
. "$1/totp.sh" || exit 9
|
|
|