fix typo in perms workflow

This commit is contained in:
aptalca 2023-04-11 17:00:23 -04:00
parent f3577570f1
commit 037dd71a0f
No known key found for this signature in database
GPG Key ID: BE36CFFB9FD85548

View File

@ -11,7 +11,7 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}
- name: Check Permissions
run: |
WRONG_PERM=$(find ./ -path "./.git" -prune -o \( -name "run" -o -name "service" -o -name "check" \) -not -perm -u=x,g=x,o=x -print)
WRONG_PERM=$(find ./ -path "./.git" -prune -o \( -name "run" -o -name "finish" -o -name "check" \) -not -perm -u=x,g=x,o=x -print)
if [ -n "${WRONG_PERM}" ]; then
for i in ${WRONG_PERM}; do
echo "::error file=${i},line=1,title=Missing Executable Bit::This file needs to be set as executable!"