Skip to content

Commit 6d5105e

Browse files
author
Jonathan Dahan
committedDec 9, 2024
default to recursive cloning, thanks @olets
1 parent e5c53df commit 6d5105e

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed
 

‎Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎changelog.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 1.1.1
2+
* default to recursive clones (thanks @olets)
3+
14
# 1.1.0
25
* update dependencies to support openssl 3 (thanks @TimB87)
36

‎readme.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Quick, simple zsh plugin manager
44

55
<img src="zrat.png" alt="zrat" title="zrat" align="left" width=120 />
66

7-
zr 1.1.0
7+
zr 1.1.1
88
by Jonathan Dahan <hi@jonathan.is>
99

1010
zr [[http://example.com]plugin/name[.git/a/file.zsh]] fetch plugins and output sourceable zsh
@@ -110,4 +110,5 @@ function zrinit {
110110
- [tekumara](https://github.com/tekumara) for helping figure out --update
111111
- [myrovh](https://github.com/myrovh) for fixing panics on some linux systems
112112
- [TimB87](https://github.com/TimB87) for adding openssl 3 support
113+
- [olets](https://github.com/olets) for adding recursive clone support
113114
- everyone on [#rust-beginners](irc://irc.mozilla.org/rust-beginners)

‎src/plugin.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ impl Plugin {
1919
fn clone_if_empty(source: &url::Url, path: &Path) -> Result<(), std::io::Error> {
2020
if !path.is_dir() {
2121
eprintln!("cloning {} into {:?}", source, path);
22-
git2::Repository::clone(source.as_str(), path).unwrap();
22+
git2::Repository::clone_recurse(source.as_str(), path).unwrap();
2323
}
2424
Ok(())
2525
}

0 commit comments

Comments
 (0)