Skip to content

Commit fb0628a

Browse files
committed
FIx linter with quotes
1 parent 7c9b1de commit fb0628a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci/scripts/python_wheel_unix_test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,10 @@ is_free_threaded() {
107107

108108
if [ "${CHECK_UNITTESTS}" == "ON" ]; then
109109
# Install testing dependencies
110-
if [ $(is_free_threaded) = "ON" ]; then
110+
if [ "$(is_free_threaded)" = "ON" ]; then
111111
echo "Free-threaded Python build detected"
112112
python -m pip install --no-build-isolation -r "${source_dir}/python/requirements-wheel-test-3.13t.txt"
113-
elif [ $(is_free_threaded) = "OFF" ]; then
113+
elif [ "$(is_free_threaded)" = "OFF" ]; then
114114
echo "Regular Python build detected"
115115
python -m pip install -U -r "${source_dir}/python/requirements-wheel-test.txt"
116116
fi

0 commit comments

Comments
 (0)