Skip to content

Commit 3c6117c

Browse files
committed
tasks: Remove whitespace
Some trailing whitespace from #26. Whitespace only so we don't need to actually use the commit hash of this (if it merges) in any repo.
1 parent 95f90df commit 3c6117c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tasks/src/environment.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,15 @@ pub fn get_crate_dirs(sh: &Shell, packages: &[String]) -> Result<Vec<String>, Bo
7676
// Extract directory path from the manifest path,
7777
// e.g., "/path/to/repo/releases/Cargo.toml" -> "/path/to/repo/releases".
7878
let dir_path = manifest_path.trim_end_matches("/Cargo.toml");
79-
79+
8080
// Filter by package name if specified.
8181
if !packages.is_empty() {
8282
let package_name = package["name"].as_str()?;
8383
if !packages.contains(&package_name.to_string()) {
8484
return None;
8585
}
8686
}
87-
87+
8888
Some(dir_path.to_string())
8989
})
9090
.collect();

0 commit comments

Comments
 (0)