aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2017-06-01 19:07:36 +0200
committerDmitry Vyukov <dvyukov@google.com>2017-06-03 10:41:09 +0200
commita6bed217317a6de45a3bb0ca039c3aeae09075a3 (patch)
treed262571d656a3a87c907504b5091a6b1557942ed
parentea2295f3e29c59b4493e98aaafc28f9083d5e570 (diff)
pkg/gce: move from gce
-rw-r--r--pkg/gce/gce.go (renamed from gce/gce.go)0
-rw-r--r--syz-gce/syz-gce.go2
-rw-r--r--vm/gce/gce.go2
3 files changed, 2 insertions, 2 deletions
diff --git a/gce/gce.go b/pkg/gce/gce.go
index b90200c3b..b90200c3b 100644
--- a/gce/gce.go
+++ b/pkg/gce/gce.go
diff --git a/syz-gce/syz-gce.go b/syz-gce/syz-gce.go
index 318887c50..fcf9c86cd 100644
--- a/syz-gce/syz-gce.go
+++ b/syz-gce/syz-gce.go
@@ -37,8 +37,8 @@ import (
"time"
"github.com/google/syzkaller/dashboard"
- "github.com/google/syzkaller/gce"
pkgconfig "github.com/google/syzkaller/pkg/config"
+ "github.com/google/syzkaller/pkg/gce"
"github.com/google/syzkaller/pkg/gcs"
"github.com/google/syzkaller/pkg/git"
. "github.com/google/syzkaller/pkg/log"
diff --git a/vm/gce/gce.go b/vm/gce/gce.go
index dff6963ca..f95967c29 100644
--- a/vm/gce/gce.go
+++ b/vm/gce/gce.go
@@ -20,7 +20,7 @@ import (
"sync"
"time"
- "github.com/google/syzkaller/gce"
+ "github.com/google/syzkaller/pkg/gce"
. "github.com/google/syzkaller/pkg/log"
"github.com/google/syzkaller/vm"
)