From a11445a29cd6f6ee6c40a7f189906cc0f546aa20 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 25 Oct 2023 12:09:21 -0700 Subject: [PATCH] Simplify README --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e9208a7..dd243f6 100644 --- a/README.md +++ b/README.md @@ -135,19 +135,20 @@ Manual Installation ------------------- If you want to contribute to `splitsh-lite` or use it as a library, you first -need to install `libgit2` in version `1.5`, preferably using your package manager of choice. +need to install `libgit2` in version `1.5`, preferably using your package +manager of choice. Then, compile `splitsh-lite`: ```bash -go get go build -o splitsh-lite github.com/splitsh/lite ``` If everything goes fine, a `splitsh-lite` binary should be available in the current directory. -If you get errors about an incompatible `libgit2` library, try exporting the needed flags, e.g. +If you get errors about an incompatible `libgit2` library, try exporting the +needed flags, e.g. ```bash export LDFLAGS="-L/opt/homebrew/opt/libgit2@1.5/lib"