Skip to content

Commit

Permalink
refactor(compute/metadata): display updated config settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Integralist committed Oct 2, 2023
1 parent de810cb commit e8e6f65
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/commands/compute/metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ func (c *MetadataCommand) Exec(_ io.Reader, out io.Writer) error {
return fmt.Errorf("failed to persist metadata choices to disk: %w", err)
}
text.Success(out, "configuration updated (see: `fastly config`)")
text.Break(out)
text.Output(out, "Build Information: %s", c.Globals.Config.WasmMetadata.BuildInfo)
text.Output(out, "Machine Information: %s", c.Globals.Config.WasmMetadata.MachineInfo)
text.Output(out, "Package Information: %s", c.Globals.Config.WasmMetadata.PackageInfo)
return nil
}

Expand Down

0 comments on commit e8e6f65

Please sign in to comment.