From fbedd425b575868124577640fe02c9c0a73c4be3 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 1 Aug 2018 21:35:13 +0200 Subject: 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. --- pkg/csource/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/csource') diff --git a/pkg/csource/options.go b/pkg/csource/options.go index 061b20246..1cfc627ee 100644 --- a/pkg/csource/options.go +++ b/pkg/csource/options.go @@ -9,7 +9,7 @@ import ( "errors" "fmt" - "github.com/google/syzkaller/syz-manager/mgrconfig" + "github.com/google/syzkaller/pkg/mgrconfig" ) // Options control various aspects of source generation. -- cgit mrf-deployment