Skip to content

Commit

Permalink
Fix typo in tar gzip command
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartmaxwell committed Oct 7, 2024
1 parent 95d9123 commit 1f05f2d
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 1f05f2d

Please sign in to comment.