mirror of
https://github.com/nolanlawson/pinafore
synced 2025-02-01 22:36:45 +01:00
9 lines
186 B
Bash
9 lines
186 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -x
|
||
|
set -e
|
||
|
|
||
|
PGPASSWORD=pinafore pg_dump -U pinafore -w pinafore_development > fixtures/dump.sql
|
||
|
cd mastodon/public/system
|
||
|
tar -czf ../../../fixtures/system.tgz .
|