From f4c631445f7c0e6920db7470d64c1a8af11140dd Mon Sep 17 00:00:00 2001 From: OutlawJoseyWales Date: Sun, 7 Jan 2024 00:49:22 +0100 Subject: [PATCH] Fixes simple typos and adds the proper directory to cd into. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 25710d9..71dce2f 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ This Swift package supports the following platforms: ## Building libgit2 -:warning: Building libgit2 requires you to have installed and build the following prerequisite frameworks first: +:warning: Building libgit2 requires you to have installed and built the following prerequisite frameworks first: - [OpenSSL](https://github.com/mfcollins3/openssl-apple) - [libssh2](https://github.com/mfcollins3/libssh2-apple) @@ -30,11 +30,11 @@ The build process for libgit2 assumes that OpenSSL and libssh2 are siblings in t If you need to build libgit2 yourself, I have provided the [build.sh](build.sh) program to automate the process. This program will build libgit2 for all supported platforms and will produce the XCFramework containing the libraries and header files for each platform. -This repository includes the source code for libgit2 as a Git submodule. To begin, you need to close the repository and load the submodules: +This repository includes the source code for libgit2 as a Git submodule. To begin, you need to clone the repository and load the submodules: ```sh git clone https://github.com/mfcollins3/libgit2-apple.git -cd libssh2-apple +cd libgit2-apple git submodule init git submodule update ```