From c67664a21b3055baca1216cc3ccdab7de3148b26 Mon Sep 17 00:00:00 2001 From: Franck Date: Wed, 5 Jan 2022 09:05:07 +1100 Subject: [PATCH] Debug changed files --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4d3ba36adc..0aa4928fc6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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