Skip to content

Commit

Permalink
BUG: Add missing space before closing bracket in if statements
Browse files Browse the repository at this point in the history
The error message on the GitHub actions log was
[: missing `]'
  • Loading branch information
Simon Rit authored and dzenanz committed Jul 4, 2023
1 parent d8d13e9 commit edd0a43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test-package-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
export ITKPYTHONPACKAGE_TAG=${{ inputs.itk-python-package-tag }}
export ITKPYTHONPACKAGE_ORG=${{ inputs.itk-python-package-org }}
export ITK_MODULE_PREQ=${{ inputs.itk-module-deps }}
if [ -z ${{ inputs.cmake-options }}]; then
if [ -z ${{ inputs.cmake-options }} ]; then
CMAKE_OPTIONS=""
else
CMAKE_OPTIONS="--cmake_options ${{ inputs.cmake-options }}"
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
export ITKPYTHONPACKAGE_ORG=${{ inputs.itk-python-package-org }}
export ITK_MODULE_PREQ=${{ inputs.itk-module-deps }}
export MACOSX_DEPLOYMENT_TARGET=10.9
if [ -z ${{ inputs.cmake-options }}]; then
if [ -z ${{ inputs.cmake-options }} ]; then
CMAKE_OPTIONS=""
else
CMAKE_OPTIONS="--cmake_options ${{ inputs.cmake-options }}"
Expand Down

0 comments on commit edd0a43

Please sign in to comment.