Skip to content

Commit ce44225

Browse files
committedJan 27, 2021
run go mod tidy
Signed-off-by: Stephanie <[email protected]>
1 parent 11baabf commit ce44225

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed
 

‎go.sum

-4
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,8 @@ github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7Do
4444
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
4545
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
4646
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
47-
github.com/devfile/api/v2 v2.0.0-20210111205815-273464363288 h1:3Ea0dVgtCEyWSjobneehLnqIGoK2pS6bWnGnJ1ek24Q=
48-
github.com/devfile/api/v2 v2.0.0-20210111205815-273464363288/go.mod h1:ujP0i3nip2g/aSOXGEy3A7vTC6EIe1kZf9Cteja6OJg=
4947
github.com/devfile/api/v2 v2.0.0-20210121164412-49ba915897f4 h1:jDzWFpF/BoyaemoPjAzw5SmlX172JsSsh+Frujm5Ww4=
5048
github.com/devfile/api/v2 v2.0.0-20210121164412-49ba915897f4/go.mod h1:Cot4snybn3qhIh48oIFi9McocnIx7zY5fFbjfrIpPvg=
51-
github.com/devfile/api/v2 v2.0.0 h1:pk4d5pFHmWuX6cvlrBK4T+o1r2S/R4r2CCEKE4PiXJ4=
52-
github.com/devfile/api/v2 v2.0.0/go.mod h1:Cot4snybn3qhIh48oIFi9McocnIx7zY5fFbjfrIpPvg=
5349
github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ=
5450
github.com/docker/docker v0.7.3-0.20190327010347-be7ac8be2ae0/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
5551
github.com/docker/go-units v0.3.3/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk=

‎main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ func main() {
1818
if len(os.Args) > 1 {
1919
if strings.HasPrefix(os.Args[1], "http") {
2020
devfile, err = devfilepkg.ParseFromURLAndValidate(os.Args[1])
21-
} else{
21+
} else {
2222
devfile, err = ParseDevfile(os.Args[1])
2323
}
2424
fmt.Println("parsing devfile from " + os.Args[1])

0 commit comments

Comments
 (0)
Please sign in to comment.