mirror of
https://github.com/LemmyNet/lemmy
synced 2024-10-30 15:21:20 +00:00
21 lines
523 B
Bash
Executable File
21 lines
523 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/../
|
|
|
|
# Copy the files to a temp dir
|
|
TMP_DIR=$(mktemp -d)
|
|
cp -a migrations/. $TMP_DIR/migrations
|
|
cp -a crates/db_schema/replaceable_schema/. $TMP_DIR/replaceable_schema
|
|
|
|
# Format the new files
|
|
find $TMP_DIR -type f -name '*.sql' -exec pg_format -i {} +
|
|
|
|
# Diff the directories
|
|
diff -r migrations $TMP_DIR/migrations
|
|
diff -r crates/db_schema/replaceable_schema $TMP_DIR/replaceable_schema
|