Skip to content
This repository was archived by the owner on Apr 30, 2021. It is now read-only.
Merged
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ or via
wget https://github.com/fuzzitdev/fuzzit/releases/download/<version>/fuzzit_<version>_<os>_<arch>
```

#### Go Get
#### Go get

Also, you can use the following command to download and compile (This usually takes some time so, it's usually faster to either download a pre-compiled release or download the source and build locally):
You can also use Go 1.12 or later to build the latest stable version from source:

```bash
go get -v -u github.com/fuzzitdev/fuzzit
GO111MODULE=on go get github.com/fuzzitdev/fuzzit/v2
```

#### Homebrew Tap
Expand Down
2 changes: 1 addition & 1 deletion cmd/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package cmd
import (
"log"

"github.com/fuzzitdev/fuzzit/client"
"github.com/fuzzitdev/fuzzit/v2/client"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package cmd
import (
"log"

"github.com/fuzzitdev/fuzzit/client"
"github.com/fuzzitdev/fuzzit/v2/client"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/download.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"log"
"strings"

"github.com/fuzzitdev/fuzzit/client"
"github.com/fuzzitdev/fuzzit/v2/client"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/get.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package cmd
import (
"log"

"github.com/fuzzitdev/fuzzit/client"
"github.com/fuzzitdev/fuzzit/v2/client"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/job.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"log"
"strings"

"github.com/fuzzitdev/fuzzit/client"
"github.com/fuzzitdev/fuzzit/v2/client"
"github.com/spf13/cobra"
"gopkg.in/src-d/go-git.v4"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"os"
"strings"

"github.com/fuzzitdev/fuzzit/client"
"github.com/fuzzitdev/fuzzit/v2/client"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package cmd

import (
"fmt"
"github.com/fuzzitdev/fuzzit/client"
"github.com/fuzzitdev/fuzzit/v2/client"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"log"
Expand Down
2 changes: 1 addition & 1 deletion cmd/target.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ limitations under the License.
package cmd

import (
"github.com/fuzzitdev/fuzzit/client"
"github.com/fuzzitdev/fuzzit/v2/client"
"log"

"github.com/spf13/cobra"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/fuzzitdev/fuzzit
module github.com/fuzzitdev/fuzzit/v2

go 1.12

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ limitations under the License.
package main

import (
"github.com/fuzzitdev/fuzzit/cmd"
"github.com/fuzzitdev/fuzzit/v2/cmd"
)

func main() {
Expand Down