Skip to content

Commit 3e9a22c

Browse files
committed
fix: correct ladybug source download URL to LadybugDB/ladybug
1 parent d98d6a3 commit 3e9a22c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

build.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,14 @@ fn get_lbug_root() -> PathBuf {
8383
println!("Downloading ladybug source version {version}...");
8484
let url = if version.starts_with('v') {
8585
format!(
86-
"https://github.com/lbugdb/lbug/archive/refs/tags/{}.tar.gz",
86+
"https://github.com/LadybugDB/ladybug/archive/refs/tags/{}.tar.gz",
8787
version
8888
)
8989
} else if version == "main" {
90-
"https://github.com/lbugdb/lbug/archive/refs/heads/main.tar.gz".to_string()
90+
"https://github.com/LadybugDB/ladybug/archive/refs/heads/main.tar.gz".to_string()
9191
} else {
9292
format!(
93-
"https://github.com/lbugdb/lbug/archive/refs/tags/v{}.tar.gz",
93+
"https://github.com/LadybugDB/ladybug/archive/refs/tags/v{}.tar.gz",
9494
version
9595
)
9696
};

0 commit comments

Comments
 (0)