We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3364932 commit 023fccbCopy full SHA for 023fccb
.github/workflows/haskell.yml
@@ -153,14 +153,14 @@ jobs:
153
echo "B"
154
git status schema
155
echo "C"
156
- git status schema | grep schema/migration > schema.diff
+ git status schema | grep schema/migration > /tmp/schema.diff
157
echo "D"
158
echo "*************************************************************"
159
- cat schema.diff
+ cat /tmp/schema.diff
160
161
- line_count="$(wc -l < schema.diff)"
+ line_count="$(wc -l < /tmp/schema.diff)"
162
if test ${line_count} -ne 0 ; then
163
echo "Schema diff"
164
165
exit 1
166
fi
0 commit comments