finalize update check URL

This commit is contained in:
Alex Goodman 2020-07-27 15:12:07 -04:00
parent c524fba691
commit 8d84dfeb65
No known key found for this signature in database
GPG key ID: 86E2870463D5E890
4 changed files with 5 additions and 8 deletions

View file

@ -172,7 +172,7 @@ release: clean-dist ## Build and publish final binaries and packages
-e AWS_SECRET_ACCESS_KEY=${TOOLBOX_AWS_SECRET_ACCESS_KEY} \
-v $(shell pwd)/$(DISTDIR)/:/distmount \
amazon/aws-cli --debug \
s3 cp /distmount/VERSION s3://anchore-toolbox/$(BIN)/releases/latest/VERSION
s3 cp /distmount/VERSION s3://toolbox-data.anchore.io/$(BIN)/releases/latest/VERSION
.PHONY: clean
clean: clean-dist clean-snapshot ## Remove previous builds and result reports

View file

@ -17,9 +17,6 @@ import (
"github.com/anchore/syft/syft/scope"
)
// note: lib name must be a single word, all lowercase
const LibraryName = "grype"
func FindVulnerabilities(provider vulnerability.Provider, userImageStr string, scopeOpt scope.Option) (result.Result, *pkg.Catalog, *scope.Scope, error) {
log.Info("Cataloging image")
catalog, theScope, theDistro, err := syft.Catalog(userImageStr, scopeOpt)

View file

@ -1,4 +1,4 @@
package internal
// note: must be a single word, all lowercase
// note: do not change this
const ApplicationName = "grype"

View file

@ -7,15 +7,15 @@ import (
"strings"
hashiVersion "github.com/anchore/go-version"
"github.com/anchore/grype/internal"
)
var latestAppVersionURL = struct {
host string
path string
}{
// TODO: set me to release host/path before release
host: "https://anchore.io",
path: "/grype/releases/latest/VERSION",
host: "https://toolbox-data.anchore.io",
path: fmt.Sprintf("/%s/releases/latest/VERSION", internal.ApplicationName),
}
func IsUpdateAvailable() (bool, string, error) {