Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Clivern committed Jun 11, 2023
1 parent dd962cd commit 752ae45
Show file tree
Hide file tree
Showing 23 changed files with 44 additions and 44 deletions.
4 changes: 2 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ snapshot:
name_template: '{{ .Tag }}-next'
brews:
- name: goenv
homepage: 'https://github.com/Clevenio/homebrew-tools'
homepage: 'https://github.com/Norwik/homebrew-tools'
tap:
owner: Clevenio
owner: Norwik
name: homebrew-tools
token: "{{ .Env.TAP_GITHUB_TOKEN }}"
commit_author:
Expand Down
38 changes: 19 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<p align="center">
<img alt="Goenv Logo" src="/static/logo.png?v=1.10.0" width="200" />
<img alt="Goenv Logo" src="/static/logo.png?v=1.11.0" width="200" />
<h3 align="center">Goenv</h3>
<p align="center">Manage Your Applications Go Environment</p>
<p align="center">
<a href="https://github.com/clevenio/Goenv/actions/workflows/build.yml">
<img src="https://github.com/clevenio/Goenv/actions/workflows/build.yml/badge.svg">
<a href="https://github.com/norwik/Goenv/actions/workflows/build.yml">
<img src="https://github.com/norwik/Goenv/actions/workflows/build.yml/badge.svg">
</a>
<a href="https://github.com/clevenio/Goenv/releases">
<img src="https://img.shields.io/badge/Version-v1.10.0-red.svg">
<a href="https://github.com/norwik/Goenv/releases">
<img src="https://img.shields.io/badge/Version-v1.11.0-red.svg">
</a>
<a href="https://goreportcard.com/report/github.com/clevenio/Goenv">
<img src="https://goreportcard.com/badge/github.com/clevenio/Goenv?v=1.10.0">
<a href="https://goreportcard.com/report/github.com/norwik/Goenv">
<img src="https://goreportcard.com/badge/github.com/norwik/Goenv?v=1.11.0">
</a>
<a href="https://godoc.org/github.com/clevenio/goenv">
<img src="https://godoc.org/github.com/clevenio/goenv?status.svg">
<a href="https://godoc.org/github.com/norwik/goenv">
<img src="https://godoc.org/github.com/norwik/goenv?status.svg">
</a>
<a href="https://github.com/clevenio/Goenv/blob/main/LICENSE">
<a href="https://github.com/norwik/Goenv/blob/main/LICENSE">
<img src="https://img.shields.io/badge/LICENSE-MIT-orange.svg">
</a>
</p>
Expand All @@ -32,23 +32,23 @@ Goenv helps you to work with multiple `golang` versions at the same time whether

## Usage

Download [the latest `goenv` binary](https://github.com/clevenio/Goenv/releases). Make it executable from everywhere.
Download [the latest `goenv` binary](https://github.com/norwik/Goenv/releases). Make it executable from everywhere.

```zsh
$ export GOENV_LATEST_VERSION=$(curl --silent "https://api.github.com/repos/clevenio/Goenv/releases/latest" | jq '.tag_name' | sed -E 's/.*"([^"]+)".*/\1/' | tr -d v)
$ export GOENV_LATEST_VERSION=$(curl --silent "https://api.github.com/repos/norwik/Goenv/releases/latest" | jq '.tag_name' | sed -E 's/.*"([^"]+)".*/\1/' | tr -d v)

# For Linux
$ curl -sL https://github.com/clevenio/Goenv/releases/download/v{$GOENV_LATEST_VERSION}/goenv_{$GOENV_LATEST_VERSION}_Linux_x86_64.tar.gz | tar xz
$ curl -sL https://github.com/norwik/Goenv/releases/download/v{$GOENV_LATEST_VERSION}/goenv_{$GOENV_LATEST_VERSION}_Linux_x86_64.tar.gz | tar xz

# For Mac
$ curl -sL https://github.com/clevenio/Goenv/releases/download/v{$GOENV_LATEST_VERSION}/goenv_{$GOENV_LATEST_VERSION}_Darwin_x86_64.tar.gz | tar xz
$ curl -sL https://github.com/norwik/Goenv/releases/download/v{$GOENV_LATEST_VERSION}/goenv_{$GOENV_LATEST_VERSION}_Darwin_x86_64.tar.gz | tar xz
```

Or install with homebrew

```zsh
$ brew tap clevenio/tools
$ brew install clevenio/tools/goenv
$ brew tap norwik/tools
$ brew install norwik/tools/goenv
```

Configure the goenv using the following command
Expand Down Expand Up @@ -106,7 +106,7 @@ $ goenv --help
🐺 Manage Your Applications Go Environment.

If you have any suggestions, bug reports, or annoyances please report
them to our issue tracker at <https://github.com/clevenio/goenv/issues>
them to our issue tracker at <https://github.com/norwik/goenv/issues>

Usage:
goenv [command]
Expand Down Expand Up @@ -177,12 +177,12 @@ When you execute a shim, `goenv` determines which Go version to use by reading i

For transparency into our release cycle and in striving to maintain backward compatibility, Goenv is maintained under the [Semantic Versioning guidelines](https://semver.org/) and release process is predictable and business-friendly.

See the [Releases section of our GitHub project](https://github.com/clevenio/goenv/releases) for changelogs for each release version of Goenv. It contains summaries of the most noteworthy changes made in each release. Also see the [Milestones section](https://github.com/clevenio/goenv/milestones) for the future roadmap.
See the [Releases section of our GitHub project](https://github.com/norwik/goenv/releases) for changelogs for each release version of Goenv. It contains summaries of the most noteworthy changes made in each release. Also see the [Milestones section](https://github.com/norwik/goenv/milestones) for the future roadmap.


## Bug tracker

If you have any suggestions, bug reports, or annoyances please report them to our issue tracker at https://github.com/clevenio/goenv/issues
If you have any suggestions, bug reports, or annoyances please report them to our issue tracker at https://github.com/norwik/goenv/issues


## Security Issues
Expand Down
4 changes: 2 additions & 2 deletions bin/release
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# Fetch latest version
export LATEST_VERSION=$(curl --silent "https://api.github.com/repos/clevenio/goenv/releases/latest" | jq '.tag_name' | sed -E 's/.*"([^"]+)".*/\1/')
export LATEST_VERSION=$(curl --silent "https://api.github.com/repos/norwik/goenv/releases/latest" | jq '.tag_name' | sed -E 's/.*"([^"]+)".*/\1/')

# Update go checksum database (sum.golang.org) immediately after release
curl --silent https://sum.golang.org/lookup/github.com/clevenio/goenv@{$LATEST_VERSION}
curl --silent https://sum.golang.org/lookup/github.com/norwik/goenv@{$LATEST_VERSION}
2 changes: 1 addition & 1 deletion cmd/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"fmt"
"os"

"github.com/clevenio/goenv/core/module"
"github.com/norwik/goenv/core/module"

"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/exec.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"fmt"
"os"

"github.com/clevenio/goenv/core/module"
"github.com/norwik/goenv/core/module"

"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/global.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"fmt"
"os"

"github.com/clevenio/goenv/core/module"
"github.com/norwik/goenv/core/module"

"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package cmd
import (
"fmt"

"github.com/clevenio/goenv/core/module"
"github.com/norwik/goenv/core/module"

"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"fmt"
"os"

"github.com/clevenio/goenv/core/module"
"github.com/norwik/goenv/core/module"

"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/local.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"fmt"
"os"

"github.com/clevenio/goenv/core/module"
"github.com/norwik/goenv/core/module"

"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/rehash.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"fmt"
"os"

"github.com/clevenio/goenv/core/module"
"github.com/norwik/goenv/core/module"

"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var rootCmd = &cobra.Command{
Short: `🐺 Manage Your Applications Go Environment.
If you have any suggestions, bug reports, or annoyances please report
them to our issue tracker at <https://github.com/clevenio/goenv/issues>`,
them to our issue tracker at <https://github.com/norwik/goenv/issues>`,
}

// Execute runs cmd tool
Expand Down
2 changes: 1 addition & 1 deletion cmd/satisfy.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"fmt"
"os"

"github.com/clevenio/goenv/core/module"
"github.com/norwik/goenv/core/module"

"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/uninstall.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"fmt"
"os"

"github.com/clevenio/goenv/core/module"
"github.com/norwik/goenv/core/module"

"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"fmt"
"os"

"github.com/clevenio/goenv/core/module"
"github.com/norwik/goenv/core/module"

"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/versions.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"fmt"
"os"

"github.com/clevenio/goenv/core/module"
"github.com/norwik/goenv/core/module"

"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion core/module/charm_select.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
//
// ```
// import (
// "github.com/clevenio/goenv/core/module"
// "github.com/norwik/goenv/core/module"
// )
//
//
Expand Down
2 changes: 1 addition & 1 deletion core/module/charm_spinner.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
//
// ```
// import (
// "github.com/clevenio/goenv/core/module"
// "github.com/norwik/goenv/core/module"
// )
//
//
Expand Down
4 changes: 2 additions & 2 deletions core/module/golang.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"path/filepath"
"strings"

"github.com/clevenio/goenv/core/service"
"github.com/clevenio/goenv/core/util"
"github.com/norwik/goenv/core/service"
"github.com/norwik/goenv/core/util"
)

// Golang type
Expand Down
2 changes: 1 addition & 1 deletion core/module/golang_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"fmt"
"testing"

"github.com/clevenio/goenv/pkg"
"github.com/norwik/goenv/pkg"

"github.com/franela/goblin"
)
Expand Down
2 changes: 1 addition & 1 deletion core/service/file_system_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"fmt"
"testing"

"github.com/clevenio/goenv/pkg"
"github.com/norwik/goenv/pkg"

"github.com/franela/goblin"
)
Expand Down
2 changes: 1 addition & 1 deletion core/service/installer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"fmt"
"testing"

"github.com/clevenio/goenv/pkg"
"github.com/norwik/goenv/pkg"

"github.com/franela/goblin"
)
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/clevenio/goenv
module github.com/norwik/goenv

go 1.18

Expand Down
2 changes: 1 addition & 1 deletion goenv.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"os"
"strings"

"github.com/clevenio/goenv/cmd"
"github.com/norwik/goenv/cmd"
)

var (
Expand Down

0 comments on commit 752ae45

Please sign in to comment.