mirror of
https://github.com/LemmyNet/lemmy
synced 2024-10-30 15:21:20 +00:00
fe3ebea95a
* Add logging for pictrs uploads * cleanup
16 lines
314 B
Bash
Executable File
16 lines
314 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# This check is only used for CI.
|
|
|
|
CWD="$(cd -P -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd -P)"
|
|
|
|
cd $CWD/../
|
|
|
|
find migrations -type f -name "*.sql" -print0 | while read -d $'\0' FILE
|
|
do
|
|
TMP_FILE="/tmp/tmp_pg_format.sql"
|
|
pg_format $FILE > $TMP_FILE
|
|
diff -u $FILE $TMP_FILE
|
|
done
|