Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
remove reference to private repo which was accidentally imported.
  • Loading branch information
groob committed Jul 7, 2017
1 parent 5d86037 commit 0867ff7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 15 deletions.
18 changes: 6 additions & 12 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions cli/serve.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import (

"golang.org/x/crypto/acme/autocert"

"github.com/kolide/cloudops/env"
"github.com/micromdm/squirrel/storage/gcs"
"github.com/micromdm/squirrel/storage/s3"
"github.com/micromdm/squirrel/version"
Expand All @@ -29,8 +28,8 @@ const authUsername = "squirrel"

func serve(cmd *flag.FlagSet) int {
var (
flProvider = cmd.String("provider", env.String("SQUIRREL_MUNKI_REPO_PROVIDER", "filesystem"), "munki repo provider: GCS or filesystem")
flGCSCredentials = cmd.String("gcs-credentials", env.String("SQUIRREL_GCS_CREDENTIALS", ""), "path to google cloud storage credentials json")
flProvider = cmd.String("provider", envString("SQUIRREL_MUNKI_REPO_PROVIDER", "filesystem"), "munki repo provider: GCS or filesystem")
flGCSCredentials = cmd.String("gcs-credentials", envString("SQUIRREL_GCS_CREDENTIALS", ""), "path to google cloud storage credentials json")
flRepo = cmd.String("repo", envString("SQUIRREL_MUNKI_REPO_PATH", ""), "path to munki repo")
flBasicPassword = cmd.String("basic-auth", envString("SQUIRREL_BASIC_AUTH", ""), "http basic auth password for /repo/")
flTLS = cmd.Bool("tls", envBool("SQUIRREL_USE_TLS", true), "use https")
Expand Down

0 comments on commit 0867ff7

Please sign in to comment.