We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d98d6a3 commit 3e9a22cCopy full SHA for 3e9a22c
1 file changed
build.rs
@@ -83,14 +83,14 @@ fn get_lbug_root() -> PathBuf {
83
println!("Downloading ladybug source version {version}...");
84
let url = if version.starts_with('v') {
85
format!(
86
- "https://github.com/lbugdb/lbug/archive/refs/tags/{}.tar.gz",
+ "https://github.com/LadybugDB/ladybug/archive/refs/tags/{}.tar.gz",
87
version
88
)
89
} else if version == "main" {
90
- "https://github.com/lbugdb/lbug/archive/refs/heads/main.tar.gz".to_string()
+ "https://github.com/LadybugDB/ladybug/archive/refs/heads/main.tar.gz".to_string()
91
} else {
92
93
- "https://github.com/lbugdb/lbug/archive/refs/tags/v{}.tar.gz",
+ "https://github.com/LadybugDB/ladybug/archive/refs/tags/v{}.tar.gz",
94
95
96
};
0 commit comments