Skip to content

Commit

Permalink
Fix the most stupid bug possible!
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanilves committed Oct 13, 2017
1 parent 2b0e063 commit e4a6281
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ func (o *Options) postprocess() error {
// GetWebSchema gets web schema we will use to talk to Docker registry (HTTP||HTTPS)
func (o *Options) GetWebSchema() string {
if o.InsecureRegistry {
return "http"
return "http://"
}

return "https"
return "https://"
}

// SeparateFilterAndRepo separates repository name from optional regex filter
Expand Down

0 comments on commit e4a6281

Please sign in to comment.