Skip to content

Commit

Permalink
Remove any " characters from sdk_name metadata field.
Browse files Browse the repository at this point in the history
  • Loading branch information
agrojean-ledger committed Nov 23, 2023
1 parent 701f04f commit 4a142f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ledger_secure_sdk_sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ fn retrieve_makefile_infos(bolos_sdk: &Path) -> Result<(u32, String), SDKBuildEr
if line.contains("API_LEVEL") && api_level.is_none() {
api_level = Some(value.parse().map_err(|_| SDKBuildError::InvalidAPILevel)?);
} else if line.contains("SDK_NAME") && sdk_name.is_none() {
sdk_name = Some(value.to_string());
sdk_name = Some(value.to_string().replace("\"", ""));
}
}

Expand Down

0 comments on commit 4a142f1

Please sign in to comment.