A decentralized music tracking and discovery platform built on AT Protocol 🎵
listenbrainz spotify atproto lastfm musicbrainz scrobbling

fix: change backup file extension from .sql.gz to .dump for consistency

Changed files
+3 -2
tools
+1
.gitignore
··· 11 11 *.db 12 12 *.parquet 13 13 *.sql.gz 14 + *.dump
+2 -2
tools/backup-xata.sh
··· 4 4 # exit if XATA_POSTGRES_URL is not set 5 5 : "${XATA_POSTGRES_URL:?Need to set XATA_POSTGRES_URL non-empty}" 6 6 7 - BACKUP_NAME="xata-backup-$(date +%Y%m%d-%H%M%S).sql.gz" 7 + BACKUP_NAME="xata-backup-$(date +%Y%m%d-%H%M%S).dump" 8 8 9 - pg_dump $XATA_POSTGRES_URL --no-owner --no-acl -Fc | pv -pteba | gzip > "$BACKUP_NAME" 9 + pg_dump $XATA_POSTGRES_URL --no-owner --no-acl -Fc | pv -pteba > "$BACKUP_NAME"