X Tutup
Skip to content

Commit d7ee9a0

Browse files
author
nate smith
committed
move remote to context package
1 parent 9000548 commit d7ee9a0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

context/ghrepo.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func CurrentGitHubRepository() (*GitHubRepository, error) {
2626
return nil, err
2727
}
2828
} else {
29-
remote, rerr := github.GuessRemote()
29+
remote, rerr := GuessRemote()
3030

3131
if rerr != nil {
3232
return nil, rerr

github/remote.go renamed to context/remote.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package github
1+
package context
22

33
import (
44
"fmt"

0 commit comments

Comments
 (0)
X Tutup