From 1721ecd1f5d093c96065f33dee3da0ff95144d14 Mon Sep 17 00:00:00 2001 From: Aaron Fiore Date: Tue, 10 Mar 2026 14:17:35 -0700 Subject: [PATCH] container: lib_taxes: print locations of output --- container/src/finance/lib/internal/lib_taxes.bash | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/container/src/finance/lib/internal/lib_taxes.bash b/container/src/finance/lib/internal/lib_taxes.bash index f399e41..213a949 100644 --- a/container/src/finance/lib/internal/lib_taxes.bash +++ b/container/src/finance/lib/internal/lib_taxes.bash @@ -1119,7 +1119,13 @@ function lib_taxes::__taxes_write() local -r _return=$? if [ $_return -eq 0 ]; then - lib_utils::print_custom "\n" + [ -z "$DOCKER_FINANCE_CLIENT_FLOW" ] && lib_utils::die_fatal + + lib_utils::print_custom "\n Taxes are located:\n\n" + + lib_utils::print_custom "\tclient (host): ${DOCKER_FINANCE_CLIENT_FLOW}/profiles/${global_parent_profile}/${global_child_profile}/taxes/${global_arg_year}/\n\n" + lib_utils::print_custom "\tcontainer: ${_tax_root_dir}/\n\n" + lib_utils::print_info "Done!" fi