Skip to content

Commit da9739f

Browse files
committed
Merge #27: tasks: Remove whitespace
3c6117c tasks: Remove whitespace (Tobin C. Harding) Pull request description: 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. ACKs for top commit: apoelstra: utACK 3c6117c Tree-SHA512: 5fb780a2014ab60c72ac189504df41d2bd10fac108ed575bf6c6cd6126ed4c0a966c7a78f96b68908f9798d54fe2bd74f199280b19473cdf3146352ad658ace3
2 parents 95f90df + 3c6117c commit da9739f

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)