Skip to content

Commit 5464d9a

Browse files
authored
CI Fix Azure install.sh bash regex match (#31813)
1 parent 1c1ec5b commit 5464d9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_tools/azure/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ pre_python_environment_install() {
4747
check_packages_dev_version() {
4848
for package in $@; do
4949
package_version=$(python -c "import $package; print($package.__version__)")
50-
if [[ $package_version =~ "^[.0-9]+$" ]]; then
50+
if [[ $package_version =~ ^[.0-9]+$ ]]; then
5151
echo "$package is not a development version: $package_version"
5252
exit 1
5353
fi

0 commit comments

Comments
 (0)