File tree 3 files changed +12
-12
lines changed
3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 25
25
working-directory : examples/go
26
26
- name : Check whether all modified files have been committed
27
27
run : >-
28
- MODIFIED_FILES="$(git status --short)"
28
+ MODIFIED_FILES="$(git status --short)";
29
29
if [ -n "$MODIFIED_FILES" ]; then
30
- echo >&2 "ERROR: the following generated files have not been committed:"
31
- echo >&2 "$MODIFIED_FILES"
32
- exit 1
30
+ echo >&2 "ERROR: the following generated files have not been committed:";
31
+ echo >&2 "$MODIFIED_FILES";
32
+ exit 1;
33
33
fi
Original file line number Diff line number Diff line change 25
25
working-directory : examples/js
26
26
- name : Check whether all modified files have been committed
27
27
run : >-
28
- MODIFIED_FILES="$(git status --short)"
28
+ MODIFIED_FILES="$(git status --short)";
29
29
if [ -n "$MODIFIED_FILES" ]; then
30
- echo >&2 "ERROR: the following generated files have not been committed:"
31
- echo >&2 "$MODIFIED_FILES"
32
- exit 1
30
+ echo >&2 "ERROR: the following generated files have not been committed:";
31
+ echo >&2 "$MODIFIED_FILES";
32
+ exit 1;
33
33
fi
Original file line number Diff line number Diff line change 25
25
working-directory : examples/python
26
26
- name : Check whether all modified files have been committed
27
27
run : >-
28
- MODIFIED_FILES="$(git status --short)"
28
+ MODIFIED_FILES="$(git status --short)";
29
29
if [ -n "$MODIFIED_FILES" ]; then
30
- echo >&2 "ERROR: the following generated files have not been committed:"
31
- echo >&2 "$MODIFIED_FILES"
32
- exit 1
30
+ echo >&2 "ERROR: the following generated files have not been committed:";
31
+ echo >&2 "$MODIFIED_FILES";
32
+ exit 1;
33
33
fi
You can’t perform that action at this time.
0 commit comments