Skip to content
This repository has been archived by the owner on Sep 9, 2020. It is now read-only.

Commit

Permalink
Update glide os/arch warning to link to the feature request
Browse files Browse the repository at this point in the history
  • Loading branch information
carolynvs committed May 17, 2017
1 parent 2d16a6b commit fa92f78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/dep/glide_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,10 @@ func (g *glideFiles) buildProjectConstraint(pkg glidePackage, sm gps.SourceManag

if g.loggers.Verbose {
if pkg.OS != "" {
g.loggers.Err.Printf("glide: The %s package specified an os, but that isn't supported by dep, and will be ignored.\n", pkg.Name)
g.loggers.Err.Printf("glide: The %s package specified an os, but that isn't supported by dep yet, and will be ignored. See https://github.com/golang/dep/issues/291.\n", pkg.Name)
}
if pkg.Arch != "" {
g.loggers.Err.Printf("glide: The %s package specified an arch, but that isn't supported by dep, and will be ignored.\n", pkg.Name)
g.loggers.Err.Printf("glide: The %s package specified an arch, but that isn't supported by dep yet, and will be ignored. See https://github.com/golang/dep/issues/291.\n", pkg.Name)
}
if len(pkg.Subpackages) > 0 {
g.loggers.Err.Printf("glide: The %s package specified subpackages, but that is calcuated by dep, and will be ignored.\n", pkg.Name)
Expand Down

0 comments on commit fa92f78

Please sign in to comment.