Debug changed files

This commit is contained in:
Franck 2022-01-05 09:05:07 +11:00
parent 44cac7ff2b
commit c67664a21b
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
1 changed files with 3 additions and 1 deletions

View File

@ -79,7 +79,9 @@ jobs:
- name: Check all protobuf code was committed
shell: bash
run: |
[ $(git status --short --ignore-submodules|wc -l) -eq 0 ]
res=$(git status --short --ignore-submodules)
echo -n "'$res'" # For debug purposes
[ $(echo -n "$res"|wc -l) -eq 0 ]
- name: build
run: npm run build