Skip to content

Commit

Permalink
golang.org/x/net/context -> context
Browse files Browse the repository at this point in the history
Change-Id: I520c1779dcbc62bfa2cbe847e39c93836ab67ae7
Signed-off-by: Jake Sanders <jsand@google.com>
  • Loading branch information
Jake Sanders committed Nov 15, 2016
1 parent 7496c35 commit 4dc1f23
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cli/clear.go
Expand Up @@ -15,13 +15,13 @@
package cli

import (
"context"
"flag"
"fmt"
"os"

"github.com/GoogleCloudPlatform/docker-credential-gcr/store"
"github.com/google/subcommands"
"golang.org/x/net/context"
)

type clearCmd struct {
Expand Down
2 changes: 1 addition & 1 deletion cli/config.go
Expand Up @@ -15,6 +15,7 @@
package cli

import (
"context"
"encoding/csv"
"errors"
"flag"
Expand All @@ -24,7 +25,6 @@ import (

"github.com/GoogleCloudPlatform/docker-credential-gcr/config"
"github.com/google/subcommands"
"golang.org/x/net/context"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion cli/configure-docker.go
Expand Up @@ -15,6 +15,7 @@
package cli

import (
"context"
"flag"
"fmt"
"os"
Expand All @@ -29,7 +30,6 @@ import (
"github.com/docker/docker/cliconfig"
"github.com/docker/docker/cliconfig/configfile"
"github.com/google/subcommands"
"golang.org/x/net/context"
)

type dockerConfigCmd struct {
Expand Down
2 changes: 1 addition & 1 deletion cli/dockerHelper.go
Expand Up @@ -15,6 +15,7 @@
package cli

import (
"context"
"flag"
"fmt"
"os"
Expand All @@ -24,7 +25,6 @@ import (
"github.com/GoogleCloudPlatform/docker-credential-gcr/store"
"github.com/docker/docker-credential-helpers/credentials"
"github.com/google/subcommands"
"golang.org/x/net/context"
)

type helperCmd struct {
Expand Down
2 changes: 1 addition & 1 deletion cli/gcr-login.go
Expand Up @@ -15,14 +15,14 @@
package cli

import (
"context"
"flag"
"fmt"
"os"

"github.com/GoogleCloudPlatform/docker-credential-gcr/auth"
"github.com/GoogleCloudPlatform/docker-credential-gcr/store"
"github.com/google/subcommands"
"golang.org/x/net/context"
)

type loginCmd struct {
Expand Down
2 changes: 1 addition & 1 deletion cli/gcr-logout.go
Expand Up @@ -15,13 +15,13 @@
package cli

import (
"context"
"flag"
"fmt"
"os"

"github.com/GoogleCloudPlatform/docker-credential-gcr/store"
"github.com/google/subcommands"
"golang.org/x/net/context"
)

type logoutCmd struct {
Expand Down
2 changes: 1 addition & 1 deletion cli/version.go
Expand Up @@ -15,13 +15,13 @@
package cli

import (
"context"
"flag"
"fmt"
"os"

"github.com/GoogleCloudPlatform/docker-credential-gcr/config"
"github.com/google/subcommands"
"golang.org/x/net/context"
)

type versionCmd struct {
Expand Down
2 changes: 1 addition & 1 deletion main.go
Expand Up @@ -21,12 +21,12 @@ See README.md
package main

import (
"context"
"flag"
"os"

"github.com/GoogleCloudPlatform/docker-credential-gcr/cli"
"github.com/google/subcommands"
"golang.org/x/net/context"
)

const (
Expand Down

0 comments on commit 4dc1f23

Please sign in to comment.