From e67ac90e861f9d38185c9293b7cb013fa84545c5 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Tue, 10 Feb 2026 20:42:36 -0300 Subject: Fix: dependency check output redirection --- files/bootless | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'files') diff --git a/files/bootless b/files/bootless index 60c649e..7c78047 100755 --- a/files/bootless +++ b/files/bootless @@ -219,7 +219,7 @@ function bootless_check { # Check dependencies function bootless_check_dependencies { for dependency in $DEPENDENCIES; do - if ! which $dependency 2> /dev/null; then + if ! which $dependency &> /dev/null; then echo "$NAME: unmet dependency $dependency, please install it" exit 1 fi -- cgit v1.2.3