summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHubcapp <walnut.alligator@gmail.com>2019-09-27 09:01:25 -0500
committerGitHub <noreply@github.com>2019-09-27 09:01:25 -0500
commite6b5d9656ac08975a1221113958db1120233408c (patch)
treeb0faf0ce5fff978794ff854db8228883f712dc78
parente6936212d63f5285ec0ccc6588b92934092c0201 (diff)
downloadMultiMC-e6b5d9656ac08975a1221113958db1120233408c.tar
MultiMC-e6b5d9656ac08975a1221113958db1120233408c.tar.gz
MultiMC-e6b5d9656ac08975a1221113958db1120233408c.tar.lz
MultiMC-e6b5d9656ac08975a1221113958db1120233408c.tar.xz
MultiMC-e6b5d9656ac08975a1221113958db1120233408c.zip
Update BUILD.md
the `git clone` command provided doesn't work and gives this error on Debian ``` $ git clone --recursive git@github.com:MultiMC/MultiMC5.git src Cloning into 'src'... The authenticity of host 'github.com (192.30.253.113)' can't be established. RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added 'github.com,192.30.253.113' (RSA) to the list of known hosts. git@github.com: Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. ``` I am suggesting an alternative command to provide to users in BUILD.md instead.
-rw-r--r--BUILD.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/BUILD.md b/BUILD.md
index d347ba14..19a929a7 100644
--- a/BUILD.md
+++ b/BUILD.md
@@ -50,7 +50,7 @@ mkdir ~/MultiMC && cd ~/MultiMC
mkdir build
mkdir install
# clone the complete source
-git clone --recursive git@github.com:MultiMC/MultiMC5.git src
+git clone --recursive https://github.com/MultiMC/MultiMC5.git src
# configure the project
cd build
cmake -DCMAKE_INSTALL_PREFIX=../install ../src