diff options
| author | Hermes Agent <hermes@localhost> | 2026-08-12 00:04:41 +0000 |
|---|---|---|
| committer | Hermes Agent <hermes@localhost> | 2026-08-12 00:04:41 +0000 |
| commit | c24c00c1d89990d44d796c4fd2b84e92162b044a (patch) | |
| tree | a58cd6fc3aaf473463dd1e51315043064787f53f /src/cli.rs | |
| parent | 191e2b7429ff4547b5fdd0fbfcff943ce96c2d68 (diff) | |
Add validated image build stage graph
Diffstat (limited to 'src/cli.rs')
| -rw-r--r-- | src/cli.rs | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -49,6 +49,10 @@ pub fn run(cli: Cli) -> Result<()> { println!("target: {}", plan.spec().target.name); println!("architecture: {}", plan.spec().target.architecture.as_str()); println!("format: tar"); + println!("stages:"); + for (index, stage) in plan.stages().iter().enumerate() { + println!(" {}. {stage}", index + 1); + } Ok(()) } Command::Build { .. } => bail!("build execution is not available yet"), |