Skip to content

Commit 8a7b374

Browse files
committed
Fix an issue when Ubuntu sh command doesn't support arrays
To support directory array we try to run `bash` instead of `sh` ``` DIRS=( ./dir1 ./dir2 ) ```
1 parent b5ef63b commit 8a7b374

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/pull-request-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- name: Validate Fonts
5454
run: |
5555
pip install --upgrade fonttools
56-
sh ./scripts/validate_fonts.sh
56+
bash ./scripts/validate_fonts.sh
5757
- name: Unit tests
5858
run: ./gradlew testDebugUnitTest
5959
- uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)