From 592e08efb83afcec4497fc31624fac84638d1545 Mon Sep 17 00:00:00 2001 From: Aaron Fiore Date: Wed, 21 Jan 2026 10:29:21 -0800 Subject: [PATCH] client: lib_docker: dev-tools: use fatal error for invalid build types --- client/src/docker/lib/internal/lib_docker.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/docker/lib/internal/lib_docker.bash b/client/src/docker/lib/internal/lib_docker.bash index d72f82e..8dc2218 100644 --- a/client/src/docker/lib/internal/lib_docker.bash +++ b/client/src/docker/lib/internal/lib_docker.bash @@ -2,7 +2,7 @@ # docker-finance | modern accounting for the power-user # -# Copyright (C) 2021-2025 Aaron Fiore (Founder, Evergreen Crypto LLC) +# Copyright (C) 2021-2026 Aaron Fiore (Founder, Evergreen Crypto LLC) # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -278,7 +278,7 @@ function lib_docker::__build() _files+=("${_path}/Dockerfile.user.in") ;; *) - lib_utils::print_warning "'${global_arg_type}' is not supported for 'dev-tools', using 'default'" + lib_utils::die_fatal "'${global_arg_type}' is not supported for 'dev-tools', use 'default' instead" ;; esac ;;