Skip to content

Commit

Permalink
Fix lints.
Browse files Browse the repository at this point in the history
  • Loading branch information
heldom1proton authored and qdot committed Nov 20, 2023
1 parent ffefa36 commit 95eb440
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 @@ -10,7 +10,7 @@ use vergen::{vergen, Config, ShaKind};
fn main() -> Result<()> {
let out_dir = env::var("OUT_DIR")?;
let dest_path = Path::new(&out_dir).join("sentry_api_key.txt");
let mut f = BufWriter::new(File::create(&dest_path)?);
let mut f = BufWriter::new(File::create(dest_path)?);
// If we have an API key available, save it to a file so we can build it in. If not, leave it
// blank.
if let Ok(api_key) = env::var("SENTRY_API_KEY") {
Expand Down

0 comments on commit 95eb440

Please sign in to comment.