diff options
| -rwxr-xr-x | files/bootless | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
