summaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorluvchurchill <46406654+luvchurchill@users.noreply.github.com>2024-02-06 01:54:04 +0200
committerGitHub <noreply@github.com>2024-02-06 01:54:04 +0200
commit53c40024d894beb45f4319d08ff054d7d7ac319f (patch)
tree3db5e9b9a5719cd00c0789ab5792c3e3bb83ad17 /install.sh
parent8d0aa11a35f822d044e6be89dc42840e0aea8858 (diff)
Added .git to end of Repo's https URL
The install.sh script didn't work for me, after I changed this locally it worked URL needs to end in .git
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index 5915a33..fdbe8d4 100755
--- a/install.sh
+++ b/install.sh
@@ -137,7 +137,7 @@ fi
Path=${1:-rustlings/}
echo "Cloning Rustlings at $Path..."
-git clone -q https://github.com/rust-lang/rustlings "$Path"
+git clone -q https://github.com/rust-lang/rustlings.git "$Path"
cd "$Path"