Fix the generated_projects.sh again (#25572)

* Double quote for shell string comparison
pull/25430/head
Lidi Zheng 4 years ago committed by GitHub
parent 8bf040ff17
commit d515270e86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      tools/buildgen/generate_projects.sh

@ -20,7 +20,7 @@ export TEST=${TEST:-false}
YAML_OK=$(python3 -c "import yaml; print(yaml.__version__.split('.') >= ['5', '4', '1'])")
if [[ ${YAML_OK} != "True" ]]; then
if [[ "${YAML_OK}" != "True" ]]; then
python3 -m pip install --upgrade --ignore-installed PyYAML==5.4.1 --user
fi

Loading…
Cancel
Save