From f83d069814893c7d786a755cb96b925f2ee0bbcd Mon Sep 17 00:00:00 2001 From: Aleksandr Chebotov <47745270+al-cheb@users.noreply.github.com> Date: Wed, 22 Jun 2022 21:07:48 +0200 Subject: [PATCH] [macOS] Fix utils.sh: line 130: null: command not found (#5790) * Fix utils.sh: line 130: null: command not found * revert changes --- images/macos/provision/utils/utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/macos/provision/utils/utils.sh b/images/macos/provision/utils/utils.sh index beb7677b..737102e0 100755 --- a/images/macos/provision/utils/utils.sh +++ b/images/macos/provision/utils/utils.sh @@ -127,7 +127,7 @@ should_build_from_source() { # No need to build from source if a bottle is disabled # Use the simple 'brew install' command to download a package - if $bottle_disabled; then + if [[ $bottle_disabled == "true" ]]; then echo "false" return fi