From 5991a6ba9a1f485089033caa9db9c41bb65d8bc1 Mon Sep 17 00:00:00 2001 From: noerw Date: Sun, 24 Jun 2018 22:57:05 +0200 Subject: [PATCH] dont use relative imports following golang conventions and to fix travis --- README.md | 3 +-- cmd/shared.go | 2 +- main.go | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 37ab3dc..ade6db4 100644 --- a/README.md +++ b/README.md @@ -81,8 +81,7 @@ Want to use `osem_notify` on a platform where no builds are provided? Assuming you have golang installed, run ```sh -go get -v -d ./ -go build ./ +go install github.com/noerw/osem_notify ``` For cross-compilation, check [this guide](https://dave.cheney.net/2015/08/22/cross-compilation-with-go-1-5) out. diff --git a/cmd/shared.go b/cmd/shared.go index 852ab51..bf2c40e 100644 --- a/cmd/shared.go +++ b/cmd/shared.go @@ -7,7 +7,7 @@ import ( "github.com/spf13/cobra" "github.com/spf13/viper" - "../core" + "github.com/noerw/osem_notify/core" ) /** diff --git a/main.go b/main.go index 231c3ff..15ba71d 100644 --- a/main.go +++ b/main.go @@ -1,7 +1,7 @@ package main import ( - "./cmd" + "github.com/noerw/osem_notify/cmd" ) func main() {