Skip to content

Commit

Permalink
Merge pull request #108 from stuartmaxwell:silly-typo
Browse files Browse the repository at this point in the history
Fix typo in tar gzip command
  • Loading branch information
stuartmaxwell authored Oct 7, 2024
2 parents 95d9123 + 1f05f2d commit fb25d70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ download_latest_backup() {
else
echo "Latest backup found: $latest_backup"
aws s3 cp s3://$S3_BUCKET/$latest_backup /app/latest-backup.tar.zst --endpoint-url $AWS_ENDPOINT_URL
tar --gizip -xf /app/latest-backup.tar.gz -O > /app/$DB_NAME.sqlite3
tar --gzip -xf /app/latest-backup.tar.gz -O > /app/$DB_NAME.sqlite3
echo "SQLite database backup downloaded and extracted."
fi
}
Expand Down

0 comments on commit fb25d70

Please sign in to comment.