Skip to content

Commit

Permalink
[MISC] fixed repo url in build script.
Browse files Browse the repository at this point in the history
  • Loading branch information
azyklus committed Dec 7, 2023
1 parent b9aeb78 commit 9cec43a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use futures_concurrency::future::Join;
use std::path::{Path, PathBuf};

const BOOTLOADER_VERSION: &str = env!("CARGO_PKG_VERSION");

Check warning on line 8 in build.rs

View workflow job for this annotation

GitHub Actions / Check

constant `BOOTLOADER_VERSION` is never used

Check warning on line 8 in build.rs

View workflow job for this annotation

GitHub Actions / Clippy

constant `BOOTLOADER_VERSION` is never used
const BOOTLOADER_REPO: &str = "https://github.com/azyklus/springboard";
const BOOTLOADER_REPO: &str = "https://github.com/kell-dev/springboard";

fn main() {
#[cfg(not(feature = "uefi"))]
Expand Down

0 comments on commit 9cec43a

Please sign in to comment.