From bbd196e36388fc3eec7904d542d3da6dd210b818 Mon Sep 17 00:00:00 2001 From: Benoit Date: Thu, 25 Apr 2024 22:14:02 +0900 Subject: [PATCH] Fix mix of tabs/spaces The bash code block to install packages were mixing spaces and tabs in the breaking lines. Removed tabs and spaces, to only use 2 spaces. Also wrap at 80 characters. --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ae9d724..0c07517 100644 --- a/README.md +++ b/README.md @@ -15,9 +15,8 @@ First install development packages for `capnproto (version 0.7.0 or newer)`, `ra On Debian Bullseye, this can be done with: ```bash -sudo apt install \ - capnproto cmake g++ libboost-dev libcapnp-dev \ - libsqlite3-dev rapidjson-dev zlib1g-dev pkg-config +sudo apt install capnproto cmake g++ libboost-dev libcapnp-dev libsqlite3-dev \ + rapidjson-dev zlib1g-dev pkg-config ``` Then compile and install laminar with: