mirror of
https://github.com/TheLocehiliosan/yadm
synced 2024-10-27 20:34:27 +00:00
Disable function calls if YADM_TEST=1
This is to allow loading the functions only during tests.
This commit is contained in:
parent
6918e1b7df
commit
301b537f15
10
yadm
10
yadm
@ -499,6 +499,10 @@ function require_repo() {
|
||||
[ -d "$YADM_REPO" ] || error_out "Git repo does not exist. did you forget to run 'init' or 'clone'?"
|
||||
}
|
||||
|
||||
process_global_args "$@"
|
||||
configure_paths
|
||||
main "${MAIN_ARGS[@]}"
|
||||
#; ****** Main processing (when not unit testing) ******
|
||||
|
||||
if [ "$YADM_TEST" != 1 ] ; then
|
||||
process_global_args "$@"
|
||||
configure_paths
|
||||
main "${MAIN_ARGS[@]}"
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user