Compare commits

..

2 Commits

Author SHA1 Message Date
014a8a7c83 bump modules 2025-07-06 11:29:47 +02:00
44fc114dee sign bootstrap.tar content 2025-07-06 11:18:05 +02:00

View File

@ -4,6 +4,7 @@ import (
"archive/tar"
"bytes"
"crypto"
"encoding/base64"
"encoding/json"
"fmt"
"io"
@ -112,6 +113,7 @@ func buildBootstrap(out io.Writer, ctx *renderContext) (err error) {
err = fmt.Errorf("signing to %s failed: %w", name, err)
return err
}
sigBytes = []byte(base64.StdEncoding.EncodeToString(sigBytes))
if err = arch.WriteHeader(&tar.Header{
Name: name,