Skip to content

Commit

Permalink
Fix branch checkout command
Browse files Browse the repository at this point in the history
  • Loading branch information
rdulmina committed Nov 19, 2024
1 parent 358d07e commit 7e6125c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pull_request_full_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
- name: Checkout non-default branch
run: |
for module_name in $(jq -r '.standard_library| .[] | select(.level==${{ matrix.level }}) | .name' extensions.json); do \
cd $module_name && git fetch origin && git checkout -b typeDesc-stmt && cd ..; \
cd $module_name && git fetch origin && git checkout -t origin/typeDesc-stmt || git checkout -t origin/java21 && cd ..; \
done
- name: Update Lang Version in Module
Expand Down

0 comments on commit 7e6125c

Please sign in to comment.