Skip to content

Commit

Permalink
Ensure that Bazelisk can be built with both Bazel and "go build" (baz…
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Weikert authored Sep 5, 2022
1 parent 48e743d commit 5387890
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ go_repository(

go_repository(
name = "com_github_bgentry_go_netrc",
importpath = "github.com/bgentry/go-netrc",
urls=["https://github.com/bgentry/go-netrc/archive/9fd32a8.zip"],
importpath = "github.com/bgentry/go-netrc/netrc",
urls = ["https://github.com/bgentry/go-netrc/archive/9fd32a8.zip"],
type = "zip",
strip_prefix = "go-netrc-9fd32a8b3d3d3f9d43c341bfe098430e07609480/netrc",
)
Expand Down
2 changes: 1 addition & 1 deletion httputil/httputil.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"strconv"
"time"

netrc "github.com/bgentry/go-netrc"
netrc "github.com/bgentry/go-netrc/netrc"
homedir "github.com/mitchellh/go-homedir"
)

Expand Down

0 comments on commit 5387890

Please sign in to comment.