This is an automated email from the ASF dual-hosted git repository. jiriondrusek pushed a commit to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 247ca76cbf6c96bbc2ed8a59796238b458b64076 Author: JiriOndrusek <[email protected]> AuthorDate: Tue May 16 08:51:56 2023 +0200 Investigation of uncommited changes with git --no-pager diff --- .github/workflows/ci-build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index cdae7f887a..d102e0f1bb 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -160,7 +160,7 @@ jobs: - name: Fail if there are uncommitted changes shell: bash run: | - [[ -z $(git status --porcelain | grep -v antora.yml) ]] || { echo 'There are uncommitted changes'; git status; exit 1; } + [[ -z $(git status --porcelain | grep -v antora.yml) ]] || { git --no-pager diff; echo 'There are uncommitted changes'; git status; exit 1; } - name: Tar Maven Repo shell: bash run: |
