Skip to content

Commit

Permalink
Add quotes for disabled case
Browse files Browse the repository at this point in the history
  • Loading branch information
bmhan12 committed Feb 22, 2024
1 parent 952ad30 commit d5adb95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ jobs:
ENABLE_PYGEOSX=${{ inputs.ENABLE_PYGEOSX }}
echo "********************************* ENABLE_PYGEOSX: ${ENABLE_PYGEOSX}"
docker_args+=(-e ENABLE_PYGEOSX=${ENABLE_PYGEOSX:-OFF})
if [ ${{ inputs.ENABLE_PYGEOSX }} == 'ON' ]; then
if [ "${{ inputs.ENABLE_PYGEOSX }}" == 'ON' ]; then
echo "******************** RUN_PYGEOSX_TESTS string ADDED"
script_args+=(--run-pygeosx-tests)
else
Expand Down

0 comments on commit d5adb95

Please sign in to comment.