Skip to content

Commit

Permalink
fix(ci): Escape period to handle cases where a path contains the stri…
Browse files Browse the repository at this point in the history
…ng "spec"
  • Loading branch information
KyleGospo committed Dec 20, 2023
1 parent 73fd953 commit d977a03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/rpmlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- name: Find spec files
run: |
SPECS=$(find ./ -type 'f' | grep ".spec")
SPECS=$(find ./ -type 'f' | grep "\.spec")
echo "SPECS=$SPECS" >> $GITHUB_ENV
- name: Run rpmlint
Expand Down

0 comments on commit d977a03

Please sign in to comment.