Skip to content

Commit

Permalink
Fix return statement in S3 folder test (pulumi#1181)
Browse files Browse the repository at this point in the history
  • Loading branch information
Frassle authored Feb 23, 2022
1 parent 8e43d5d commit a53d9fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws-go-s3-folder-component/s3folder.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func NewS3Folder(ctx *pulumi.Context, bucketName string, siteDir string, args *F
return nil
})
if err != nil {
return err
return nil, err
}

// Set the access policy for the bucket so all objects are readable.
Expand Down

0 comments on commit a53d9fe

Please sign in to comment.