Fix error on invalid OS selection

This commit is contained in:
Liam 2024-04-21 08:17:00 -07:00 committed by Martin Wimpress
parent 9ad1be3ec1
commit 02b93d9bbe
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ function error_specify_os() {
os_supported() { os_supported() {
if [[ ! " $(os_support) " =~ " ${OS} " ]]; then if [[ ! " $(os_support) " =~ " ${OS} " ]]; then
os_not_supported error_not_supported_os
fi fi
} }