diff --git a/cmd/fdroidcl/devices.go b/cmd/fdroidcl/devices.go index 85a4a27..0b9b313 100644 --- a/cmd/fdroidcl/devices.go +++ b/cmd/fdroidcl/devices.go @@ -7,7 +7,7 @@ import ( "fmt" "log" - "github.com/mvdan/adb" + "github.com/mvdan/fdroidcl/adb" ) var cmdDevices = &Command{ diff --git a/cmd/fdroidcl/install.go b/cmd/fdroidcl/install.go index 83b0e18..5dae09c 100644 --- a/cmd/fdroidcl/install.go +++ b/cmd/fdroidcl/install.go @@ -7,9 +7,8 @@ import ( "fmt" "log" - "github.com/mvdan/adb" - "github.com/mvdan/fdroidcl" + "github.com/mvdan/fdroidcl/adb" ) var cmdInstall = &Command{ diff --git a/cmd/fdroidcl/search.go b/cmd/fdroidcl/search.go index 2c4d202..a713ca5 100644 --- a/cmd/fdroidcl/search.go +++ b/cmd/fdroidcl/search.go @@ -11,9 +11,8 @@ import ( "sort" "strings" - "github.com/mvdan/adb" - "github.com/mvdan/fdroidcl" + "github.com/mvdan/fdroidcl/adb" ) var cmdSearch = &Command{ diff --git a/cmd/fdroidcl/upgrade.go b/cmd/fdroidcl/upgrade.go index bc33029..cf63fba 100644 --- a/cmd/fdroidcl/upgrade.go +++ b/cmd/fdroidcl/upgrade.go @@ -7,9 +7,8 @@ import ( "fmt" "log" - "github.com/mvdan/adb" - "github.com/mvdan/fdroidcl" + "github.com/mvdan/fdroidcl/adb" ) var cmdUpgrade = &Command{ diff --git a/index.go b/index.go index 06167b8..18d1566 100644 --- a/index.go +++ b/index.go @@ -10,7 +10,7 @@ import ( "sort" "strings" - "github.com/mvdan/adb" + "github.com/mvdan/fdroidcl/adb" ) type Index struct {