c5394524df
* chore: test in mastodon v2.7.0 * update ruby version * fix backup script and update fixtures
9 lines
211 B
Bash
Executable file
9 lines
211 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -x
|
|
set -e
|
|
|
|
PGPASSWORD=pinafore pg_dump -U pinafore -w pinafore_development -h 127.0.0.1 > tests/fixtures/dump.sql
|
|
cd mastodon/public/system
|
|
tar -czf ../../../tests/fixtures/system.tgz .
|