Skip to content

Commit e3e474c

Browse files
committed
fix(cli): Add missing output in "app get" command
The println!() was probably lost in the recent refactor.
1 parent ae0d33a commit e3e474c

File tree

1 file changed

+3
-0
lines changed
  • lib/cli/src/commands/app

1 file changed

+3
-0
lines changed

lib/cli/src/commands/app/get.rs

+3
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ impl AsyncCliCommand for CmdAppGet {
3030
async fn run_async(self) -> Result<DeployApp, anyhow::Error> {
3131
let client = self.api.client()?;
3232
let (_ident, app) = self.ident.load_app(&client).await?;
33+
34+
println!("{}", self.fmt.format.render(&app));
35+
3336
Ok(app)
3437
}
3538
}

0 commit comments

Comments
 (0)