From 023fccb30cb9c6ade525c82ae19c14700d747a79 Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Mon, 20 Feb 2023 16:43:17 +1100 Subject: [PATCH] fixup --- .github/workflows/haskell.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 10cf71768..8819ccfba 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -153,14 +153,14 @@ jobs: echo "B" git status schema echo "C" - git status schema | grep schema/migration > schema.diff + git status schema | grep schema/migration > /tmp/schema.diff echo "D" echo "*************************************************************" - cat schema.diff + cat /tmp/schema.diff echo "*************************************************************" - line_count="$(wc -l < schema.diff)" + line_count="$(wc -l < /tmp/schema.diff)" if test ${line_count} -ne 0 ; then echo "Schema diff" - cat schema.diff + cat /tmp/schema.diff exit 1 fi