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 6af7d14 commit 7c9d217Copy full SHA for 7c9d217
.github/workflows/haskell.yml
@@ -147,14 +147,13 @@ jobs:
147
148
- name: Check that Schema Migrations are complete
149
run: |
150
- ls -l schema/
151
PGPASSFILE=config/pgpass-mainnet cabal run cardano-db-tool -- run-migrations --mdir schema/ --ldir /tmp/
152
ls -l schema/
153
git diff schema/ > schema.diff
154
echo "*************************************************************"
155
cat schema.diff
156
157
- line_count="$(wc -l schema.diff)"
+ line_count="$(wc -l < schema.diff)"
158
if test ${line_count} -ne 0 ; then
159
echo "Schema diff"
160
0 commit comments