Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AUR and local builds #17

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions ABOUT_SETTING_UP_GO.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ brew tap icalialabs/formulae
brew install plis
```

On Arch Linux, you can install it from AUR:

```
yaourt -S plis
```

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How it it that it's installed using yaourt? Who's keeping the AUR repository up to date?

On other systems you can:

* Download the executable for your system from the
Expand Down
4 changes: 2 additions & 2 deletions cmd/attach.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/check_context.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package cmd

import (
"fmt"
"github.com/IcaliaLabs/plis/project"
"../project"
"github.com/urfave/cli"
"strconv"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/compose.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package cmd

import (
"github.com/IcaliaLabs/plis/translation"
"../translation"
"github.com/urfave/cli"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/run.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package cmd

import (
"github.com/IcaliaLabs/plis/project"
"github.com/IcaliaLabs/plis/translation"
"../project"
"../translation"
"github.com/urfave/cli"
)

Expand Down
6 changes: 3 additions & 3 deletions cmd/start.go
Original file line number Diff line number Diff line change
@@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion plis.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/IcaliaLabs/plis/cmd"
"./cmd"
"github.com/urfave/cli"
"os"
)
Expand Down
2 changes: 1 addition & 1 deletion project/container_ids.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package project

import (
"github.com/IcaliaLabs/plis/translation"
"../translation"
"strings"
)

Expand Down
2 changes: 1 addition & 1 deletion project/container_states.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package project

import (
"github.com/IcaliaLabs/plis/translation"
"../translation"
"strings"
)

Expand Down