Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sanitize package path #2155

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Francois-Rene Rideau <tunes@google.com>
Julio Merino <jmmv@google.com>
Kamal Marhubi <kamal@marhubi.com>
Kristina Chodorow <kchodorow@google.com>
Michael Hackner <mhackner@gmail.com>
Philipp Wollermann <philwo@google.com>
Ulf Adams <ulfjack@google.com>
Justine Alexandra Roberts Tunney <jart@google.com>
Expand Down
6 changes: 5 additions & 1 deletion crate_universe/src/rendering.rs
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,11 @@ impl Renderer {

fn label_to_path(label: &Label) -> PathBuf {
match &label.package {
Some(package) => PathBuf::from(format!("{}/{}", package, label.target)),
Some(package) => PathBuf::from(format!(
"{}/{}",
sanitize_repository_name(package),
label.target
)),
None => PathBuf::from(&label.target),
}
}
Expand Down