mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-05-02 06:16:08 -04:00
Fix various small things throughout the codebase (#2800)
* bootstrapper: remove obsolete log statement * ci: simplify variable usage Co-authored-by: Daniel Weiße <daniel-weisse@users.noreply.github.com> * cli: add missing formatting directive * helm: fix rm invocation * ci: document reproducible-builds workflow * constants: use variables for measurement files * constants: use variables for CDN distribution ID * ci: make Helm version explicit * api: prettify versionsapi-list output * ci: remove obsolete docstring --------- Co-authored-by: Daniel Weiße <daniel-weisse@users.noreply.github.com>
This commit is contained in:
parent
badcdcb764
commit
ef6f63dc48
19 changed files with 33 additions and 26 deletions
|
@ -94,7 +94,7 @@ func runList(cmd *cobra.Command, _ []string) (retErr error) {
|
|||
for _, v := range patchVersions {
|
||||
vers = append(vers, v.Version())
|
||||
}
|
||||
raw, err := json.Marshal(vers)
|
||||
raw, err := json.MarshalIndent(vers, "", " ")
|
||||
if err != nil {
|
||||
return fmt.Errorf("marshaling versions: %w", err)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue