From d977a03753d642ba494c18893e621d3c2c6834d5 Mon Sep 17 00:00:00 2001 From: Kyle Gospodnetich Date: Tue, 19 Dec 2023 21:54:17 -0800 Subject: [PATCH] fix(ci): Escape period to handle cases where a path contains the string "spec" --- .github/workflows/rpmlint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rpmlint.yml b/.github/workflows/rpmlint.yml index 596b276..3f77ec9 100644 --- a/.github/workflows/rpmlint.yml +++ b/.github/workflows/rpmlint.yml @@ -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