Skip to content

Commit 3cf0712

Browse files
[PATCH] fix for mix language syntax typo.
Changes in file .github/workflows/makefile-lint.yml: - removed eronious semi-colon ';'
1 parent 5b50ebe commit 3cf0712

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/makefile-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
ERR_DETS="file=.github/workflows/makefile-lint.yml,line=52,endLine=57,title=FAILURE" \
5656
ERR_MSG_LINE="::error ${ERR_DETS}::ERROR ${ERR_MSG_STUB}" \
5757
printf "%s\n" "${ERR_MSG_LINE}" \
58-
exit 1; \
58+
exit 1 \
5959
;}
6060
cd ..
6161
- name: Get makefiles Files
@@ -83,7 +83,7 @@ jobs:
8383
ERR_DETS="file=.github/workflows/makefile-lint.yml,line=79,endLine=88,title=FAILURE" \
8484
ERR_MSG_LINE="::error ${ERR_DETS}::ERROR ${ERR_MSG_STUB}" \
8585
printf "%s\n" "${ERR_MSG_LINE}" \
86-
exit 1; \
86+
exit 1 \
8787
;}
8888
fi
8989
FILE="${{ steps.makefiles.outputs.files }}" ;

0 commit comments

Comments
 (0)