Check OSDK crate when running make check

This commit is contained in:
Jianfeng Jiang
2024-03-13 06:40:21 +00:00
committed by Tate, Hongliang Tian
parent 951b2f98dd
commit c7383ef23d
3 changed files with 4 additions and 3 deletions

View File

@ -90,7 +90,7 @@ fn get_workspace_default_members() -> Vec<String> {
.map(|value| {
// The default member is in the form of "<crate_name> <crate_version> (path+file://<crate_path>)"
let default_member = value.as_str().unwrap();
let path = default_member.split(" ").nth(2).unwrap();
let path = default_member.split(' ').nth(2).unwrap();
path.trim_start_matches("(path+file://")
.trim_end_matches(')')
.to_string()