From 195ee0314034e7a7a373ac3f77ed4e402f31b57f Mon Sep 17 00:00:00 2001 From: Jaga Santagostino Date: Fri, 10 May 2019 15:04:50 +0200 Subject: [PATCH 1/4] fix releases url --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4ded4c7c8..b99e9d86f 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ You can get all packages in a group by using group name (like `logging`) or sing ### Install -You can find `furyctl` binaries on the [Releases page](releases). +You can find `furyctl` binaries on the [Releases page](https://github.com/sighup-io/furyagent/releases). Supported architectures are (64 bit): - `linux` From b48f7a6a7859605145a65b19bd6a36609b1704b1 Mon Sep 17 00:00:00 2001 From: Jaga Santagostino Date: Fri, 10 May 2019 15:07:18 +0200 Subject: [PATCH 2/4] fix typo in link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b99e9d86f..2826e9ed7 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ You can get all packages in a group by using group name (like `logging`) or sing ### Install -You can find `furyctl` binaries on the [Releases page](https://github.com/sighup-io/furyagent/releases). +You can find `furyctl` binaries on the [Releases page](https://github.com/sighup-io/furyctl/releases). Supported architectures are (64 bit): - `linux` From 8e94a1cf2016c1f6e811c6ce22222de2497019ff Mon Sep 17 00:00:00 2001 From: Simone Messina Date: Thu, 30 May 2019 16:09:30 +0200 Subject: [PATCH 3/4] Github url fixed --- README.md | 4 ++-- cmd/config.go | 2 +- go.mod | 2 +- main.go | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2826e9ed7..4327fd1ea 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ You can get all packages in a group by using group name (like `logging`) or sing ### Install -You can find `furyctl` binaries on the [Releases page](https://github.com/sighup-io/furyctl/releases). +You can find `furyctl` binaries on the [Releases page](https://github.com/sighupio/furyctl/releases). Supported architectures are (64 bit): - `linux` @@ -50,7 +50,7 @@ Download right binary for your architecture and add it to your PATH. Assuming it `~/Downloads` folder, you can run following commands (replacing `{arch}` with your architecture): ``` -chmod +x ~/Downloads/furyctl-{arch}-amd64 && mv ~/Downloads/furyctl-{arch}-amd64 /usr/local/bin/furyctl +chmod +x ~/Downloads/furyctl-{arch}-amd64.dms && mv ~/Downloads/furyctl-{arch}-amd64.dms /usr/local/bin/furyctl ``` ### Usage diff --git a/cmd/config.go b/cmd/config.go index ef135773a..ec5e617c5 100644 --- a/cmd/config.go +++ b/cmd/config.go @@ -21,7 +21,7 @@ import ( const ( configFile = "Furyfile" - repoPrefix = "git@github.com:sighup-io/fury-kubernetes" + repoPrefix = "git@github.com:sighupio/fury-kubernetes" defaultVendorFolderName = "vendor" ) diff --git a/go.mod b/go.mod index 6d4afdcc1..a7f2eb7b6 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/sighup-io/furyctl +module github.com/sighupio/furyctl require ( contrib.go.opencensus.io/exporter/ocagent v0.3.0 // indirect diff --git a/main.go b/main.go index 7cbe7fafa..2c099a941 100644 --- a/main.go +++ b/main.go @@ -15,7 +15,7 @@ package main import ( - "github.com/sighup-io/furyctl/cmd" + "github.com/sighupio/furyctl/cmd" ) func main() { From 45f7d294022d17fba552828f981d36f99178aa33 Mon Sep 17 00:00:00 2001 From: Simone Messina Date: Thu, 30 May 2019 16:43:50 +0200 Subject: [PATCH 4/4] Change reverted in installation instructions --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4327fd1ea..a9cff8eeb 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Download right binary for your architecture and add it to your PATH. Assuming it `~/Downloads` folder, you can run following commands (replacing `{arch}` with your architecture): ``` -chmod +x ~/Downloads/furyctl-{arch}-amd64.dms && mv ~/Downloads/furyctl-{arch}-amd64.dms /usr/local/bin/furyctl +chmod +x ~/Downloads/furyctl-{arch}-amd64 && mv ~/Downloads/furyctl-{arch}-amd64 /usr/local/bin/furyctl ``` ### Usage