Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mkenigs committed Jan 16, 2024
1 parent bf63ee1 commit 54d0d91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/action/common/configure_nix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ impl ConfigureNix {
pub async fn find_nix_and_ca_cert(
unpacked_path: &Path,
) -> Result<(PathBuf, PathBuf), ActionError> {
// Find an `nix` package
// Find a `nix` package
let nix_pkg_glob = format!("{}/nix-*/store/*-nix-*.*.*", unpacked_path.display());
let mut found_nix_pkg = None;
for entry in glob(&nix_pkg_glob).map_err(Self::error)? {
Expand All @@ -105,7 +105,7 @@ impl ConfigureNix {
return Err(Self::error(ConfigureNixError::NoNix));
};

// Find an `nss-cacert` package, add it too.
// Find an `nss-cacert` package
let nss_ca_cert_pkg_glob =
format!("{}/nix-*/store/*-nss-cacert-*.*", unpacked_path.display());
let mut found_nss_ca_cert_pkg = None;
Expand Down

0 comments on commit 54d0d91

Please sign in to comment.