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

Fix CI after squashing the repository #2

Merged
merged 2 commits into from
May 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/criticalup-core/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ impl State {
let manifest = canonicalize_or_err(manifest)?;
let mut inner = self.inner.borrow_mut();
let existing_installation_in_state_exists =
inner.repr.installations.get(installation_id).is_some();
inner.repr.installations.contains_key(installation_id);
let installation_path_on_disk_exists = config
.paths
.installation_dir
Expand Down
1 change: 0 additions & 1 deletion crates/criticalup-core/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ impl Sha256Hasher {
}
}

///
impl Hasher for Sha256Hasher {
/// This method is unreachable and here to appease the compiler, mandatory method.
fn finish(&self) -> u64 {
Expand Down
1 change: 1 addition & 0 deletions docs/shared
Submodule shared added at 52d376
Loading