Skip to content

Commit

Permalink
Update path to S3 interfaces to mock after bumping AWS SDK version
Browse files Browse the repository at this point in the history
  • Loading branch information
jckuester committed Feb 24, 2020
1 parent 88041af commit 3c055ab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.go
@@ -1,9 +1,9 @@
package main

//go:generate mockgen -package mocks -destination resource/mocks/autoscaling.go -source=$GOPATH/pkg/mod/github.com/aws/aws-sdk-go@v1.29.1/service/autoscaling/autoscalingiface/interface.go
//go:generate mockgen -package mocks -destination resource/mocks/ec2.go -source=$GOPATH/pkg/mod/github.com/aws/aws-sdk-go@v1.29.1/service/ec2/ec2iface/interface.go
//go:generate mockgen -package mocks -destination resource/mocks/sts.go -source=$GOPATH/pkg/mod/github.com/aws/aws-sdk-go@v1.29.1/service/sts/stsiface/interface.go
//go:generate mockgen -package mocks -destination resource/mocks/rds.go -source=$GOPATH/pkg/mod/github.com/aws/aws-sdk-go@v1.29.1/service/rds/rdsiface/interface.go
//go:generate mockgen -package mocks -destination resource/mocks/autoscaling.go -source=$GOPATH/pkg/mod/github.com/aws/aws-sdk-go@v1.29.8/service/autoscaling/autoscalingiface/interface.go
//go:generate mockgen -package mocks -destination resource/mocks/ec2.go -source=$GOPATH/pkg/mod/github.com/aws/aws-sdk-go@v1.29.8/service/ec2/ec2iface/interface.go
//go:generate mockgen -package mocks -destination resource/mocks/sts.go -source=$GOPATH/pkg/mod/github.com/aws/aws-sdk-go@v1.29.8/service/sts/stsiface/interface.go
//go:generate mockgen -package mocks -destination resource/mocks/rds.go -source=$GOPATH/pkg/mod/github.com/aws/aws-sdk-go@v1.29.8/service/rds/rdsiface/interface.go

import (
"os"
Expand Down

0 comments on commit 3c055ab

Please sign in to comment.