1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-25 12:12:34 +01:00

attempt to fix file permission tests

This commit is contained in:
Mike Fährmann 2023-06-25 00:48:40 +02:00
parent c1cce4a80b
commit 23469837cd
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -20,9 +20,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Check file mode bits
- name: Check file permissions
run: |
[ "$(find ./gallery_dl -type f -not -perm 644)" ] && exit 1
if [[ "$(find ./gallery_dl -type f -not -perm 644)" ]]; then exit 1; fi
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4