Skip to content

Commit 023fccb

Browse files
committed
fixup
1 parent 3364932 commit 023fccb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/haskell.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -153,14 +153,14 @@ jobs:
153153
echo "B"
154154
git status schema
155155
echo "C"
156-
git status schema | grep schema/migration > schema.diff
156+
git status schema | grep schema/migration > /tmp/schema.diff
157157
echo "D"
158158
echo "*************************************************************"
159-
cat schema.diff
159+
cat /tmp/schema.diff
160160
echo "*************************************************************"
161-
line_count="$(wc -l < schema.diff)"
161+
line_count="$(wc -l < /tmp/schema.diff)"
162162
if test ${line_count} -ne 0 ; then
163163
echo "Schema diff"
164-
cat schema.diff
164+
cat /tmp/schema.diff
165165
exit 1
166166
fi

0 commit comments

Comments
 (0)