[macOS] Fix utils.sh: line 130: null: command not found (#5790)

* Fix utils.sh: line 130: null: command not found

* revert changes
This commit is contained in:
Aleksandr Chebotov
2022-06-22 21:07:48 +02:00
committed by GitHub
parent 160d3cc825
commit f83d069814

View File

@@ -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