Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
erikd committed Feb 20, 2023
1 parent 3364932 commit 023fccb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 023fccb

Please sign in to comment.