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:
parent
381bce9ac0
commit
c9f3777f2a
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue