Skip to content

Commit 5387890

Browse files
authored
Ensure that Bazelisk can be built with both Bazel and "go build" (#353)
1 parent 48e743d commit 5387890

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

WORKSPACE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ go_repository(
4444

4545
go_repository(
4646
name = "com_github_bgentry_go_netrc",
47-
importpath = "github.com/bgentry/go-netrc",
48-
urls=["https://github.com/bgentry/go-netrc/archive/9fd32a8.zip"],
47+
importpath = "github.com/bgentry/go-netrc/netrc",
48+
urls = ["https://github.com/bgentry/go-netrc/archive/9fd32a8.zip"],
4949
type = "zip",
5050
strip_prefix = "go-netrc-9fd32a8b3d3d3f9d43c341bfe098430e07609480/netrc",
5151
)

httputil/httputil.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"strconv"
1717
"time"
1818

19-
netrc "github.com/bgentry/go-netrc"
19+
netrc "github.com/bgentry/go-netrc/netrc"
2020
homedir "github.com/mitchellh/go-homedir"
2121
)
2222

0 commit comments

Comments
 (0)