diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2018-08-01 21:35:13 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2018-08-02 16:57:32 +0200 |
| commit | fbedd425b575868124577640fe02c9c0a73c4be3 (patch) | |
| tree | 80b942c87b1b68274573b3ef90a7091211e4769e /pkg/bisect | |
| parent | d5b1542a54ed37d8b7c9a62bfc441893b509b198 (diff) | |
pkg/mgrconfig: move from syz-manager/mgrconfig
mgrconfig was used only by syz-manager initially,
but now it's used by a dozen of packages and it's
weird to import from under a binary dir.
pkg/ is much more reasonable dir for a widely used
helper package.
Diffstat (limited to 'pkg/bisect')
| -rw-r--r-- | pkg/bisect/bisect.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/bisect/bisect.go b/pkg/bisect/bisect.go index bd9501084..c78508368 100644 --- a/pkg/bisect/bisect.go +++ b/pkg/bisect/bisect.go @@ -11,9 +11,9 @@ import ( "github.com/google/syzkaller/pkg/build" "github.com/google/syzkaller/pkg/instance" + "github.com/google/syzkaller/pkg/mgrconfig" "github.com/google/syzkaller/pkg/osutil" "github.com/google/syzkaller/pkg/vcs" - "github.com/google/syzkaller/syz-manager/mgrconfig" ) type Config struct { |
