osbuild-upload-generic-s3: switch to fmt.Println everything

The built-ins shouldn't really be used.

Signed-off-by: Ondřej Budai <ondrej@budai.cz>
This commit is contained in:
Ondřej Budai 2022-08-15 15:08:41 +02:00 committed by Sanne Raymaekers
parent 381bce9ac0
commit c9f3777f2a

View file

@ -34,13 +34,13 @@ func main() {
a, err := awscloud.NewForEndpoint(endpoint, region, accessKeyID, secretAccessKey, sessionToken, caBundle, skipSSLVerification)
if err != nil {
println(err.Error())
fmt.Println(err.Error())
return
}
uploadOutput, err := a.Upload(filename, bucketName, keyName)
if err != nil {
println(err.Error())
fmt.Println(err.Error())
return
}