Skip to content

Commit

Permalink
chore(cli): Update the instructions for verifying the IC image sha256
Browse files Browse the repository at this point in the history
  • Loading branch information
sasa-tomic committed May 25, 2023
1 parent 262d768 commit 630756c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rs/cli/src/ic_admin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ To build and verify the IC-OS disk image, run:
```
# From https://github.com/dfinity/ic#building-the-code
# This process requires Mac/Linux/WSL2, Git and Podman on your machine.
# This process requires an x86-64 based machine, Ubuntu 20.04 or a newer version of the OS, Git, and Podman.
git clone https://github.com/dfinity/ic
cd ic
git fetch origin
Expand Down
4 changes: 2 additions & 2 deletions rs/cli/src/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use ic_base_types::PrincipalId;
use ic_management_types::requests::NodesRemoveRequest;
use ic_management_types::NodeFeature;
use itertools::Itertools;
use log::info;
use log::{info, warn};

#[derive(Clone)]
pub struct Runner {
Expand Down Expand Up @@ -136,7 +136,7 @@ impl Runner {
.collect::<Vec<_>>();

if versions.is_empty() {
return Err(anyhow::anyhow!("Provided empty list of versions, aborting..."));
warn!("Provided empty list of versions to retire");
}

let mut template =
Expand Down

0 comments on commit 630756c

Please sign in to comment.