Skip to content

Commit

Permalink
Fix find invocation in GitLab CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
YoshiRulz authored Nov 16, 2023
1 parent b961aa2 commit bb0d8f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ build_ext_projs:
- if: '$CI_PIPELINE_SOURCE == "schedule"'
when: always
script:
- for d in $CI_PROJECT_DIR/ExternalProjects/*; do if [ -e "$d/build_release.sh" ] && (find "$d" -name '*.csproj' -maxdepth 1 -quit); then cd "$d" && ./build_release.sh; fi; done
- for d in $CI_PROJECT_DIR/ExternalProjects/*; do [ -e "$d/build_release.sh" -a "$(find "$d" -maxdepth 1 -name '*.csproj' -print -quit)" ] && cd "$d" && ./build_release.sh; fi; done
stage: test

build_ext_tools:
Expand Down

0 comments on commit bb0d8f2

Please sign in to comment.