diff --git a/ABOUT_SETTING_UP_GO.md b/ABOUT_SETTING_UP_GO.md index e74e05d..e367b9e 100644 --- a/ABOUT_SETTING_UP_GO.md +++ b/ABOUT_SETTING_UP_GO.md @@ -11,11 +11,3 @@ export PATH=$PATH:$GOBIN Most of the available online documentation and resources I found missed to set the `GOBIN` variable, which causes an error whenever running the `go get` command in the project's directory. - -You might also want to add a symlink from your GOPATH to wherever you cloned the plis project into... - -```bash -# Make sure your'e inside the cloned plis project directory: -mkdir -p ${GOPATH}/src/github.com/IcaliaLabs -ln -s $(pwd) ${GOPATH}/src/github.com/IcaliaLabs/plis -``` diff --git a/README.md b/README.md index adfbc9e..63724ee 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,12 @@ brew tap icalialabs/formulae brew install plis ``` +On Arch Linux, you can install it from AUR: + +``` +yaourt -S plis +``` + On other systems you can: * Download the executable for your system from the diff --git a/cmd/attach.go b/cmd/attach.go index a67c457..25b5d55 100644 --- a/cmd/attach.go +++ b/cmd/attach.go @@ -2,8 +2,8 @@ package cmd import ( "fmt" - "github.com/IcaliaLabs/plis/project" - "github.com/IcaliaLabs/plis/translation" + "../project" + "../translation" "github.com/urfave/cli" "os" ) diff --git a/cmd/check_context.go b/cmd/check_context.go index 6edcdcc..8206f31 100644 --- a/cmd/check_context.go +++ b/cmd/check_context.go @@ -2,7 +2,7 @@ package cmd import ( "fmt" - "github.com/IcaliaLabs/plis/project" + "../project" "github.com/urfave/cli" "strconv" ) diff --git a/cmd/compose.go b/cmd/compose.go index 48efcae..279b432 100644 --- a/cmd/compose.go +++ b/cmd/compose.go @@ -1,7 +1,7 @@ package cmd import ( - "github.com/IcaliaLabs/plis/translation" + "../translation" "github.com/urfave/cli" ) diff --git a/cmd/run.go b/cmd/run.go index 9d9627a..4040123 100644 --- a/cmd/run.go +++ b/cmd/run.go @@ -1,8 +1,8 @@ package cmd import ( - "github.com/IcaliaLabs/plis/project" - "github.com/IcaliaLabs/plis/translation" + "../project" + "../translation" "github.com/urfave/cli" ) diff --git a/cmd/start.go b/cmd/start.go index d9eb952..a87b80e 100644 --- a/cmd/start.go +++ b/cmd/start.go @@ -1,12 +1,12 @@ package cmd import ( - "github.com/IcaliaLabs/plis/project" - "github.com/IcaliaLabs/plis/translation" + "../project" + "../translation" "github.com/urfave/cli" "regexp" - "github.com/IcaliaLabs/plis/grouping" + "../grouping" "path/filepath" "log" ) diff --git a/plis.go b/plis.go index 2fe8de9..62aa60c 100644 --- a/plis.go +++ b/plis.go @@ -1,7 +1,7 @@ package main import ( - "github.com/IcaliaLabs/plis/cmd" + "./cmd" "github.com/urfave/cli" "os" ) diff --git a/project/container_ids.go b/project/container_ids.go index 91969c1..ab7a9f2 100644 --- a/project/container_ids.go +++ b/project/container_ids.go @@ -1,7 +1,7 @@ package project import ( - "github.com/IcaliaLabs/plis/translation" + "../translation" "strings" ) diff --git a/project/container_states.go b/project/container_states.go index 03629ac..775d3d2 100644 --- a/project/container_states.go +++ b/project/container_states.go @@ -1,7 +1,7 @@ package project import ( - "github.com/IcaliaLabs/plis/translation" + "../translation" "strings" )