Skip to content

Commit

Permalink
Merge pull request #2 from YakDriver/b-module-cleanup
Browse files Browse the repository at this point in the history
Module cleanup
  • Loading branch information
YakDriver authored Jun 29, 2023
2 parents ce09590 + d7db74e commit 6970117
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 20 deletions.
10 changes: 5 additions & 5 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ brews:
tap:
owner: bflad
name: homebrew-tap
homepage: https://github.com/bflad/tfproviderdocs
homepage: https://github.com/YakDriver/tfproviderdocs
install: |
bin.install "tfproviderdocs"
test: |
Expand All @@ -33,7 +33,7 @@ builds:
- arm64
- 386
ldflags:
- -s -w -X github.com/bflad/tfproviderdocs/version.Version={{.Version}} -X github.com/bflad/tfproviderdocs/version.VersionPrerelease=
- -s -w -X github.com/YakDriver/tfproviderdocs/version.Version={{.Version}} -X github.com/YakDriver/tfproviderdocs/version.VersionPrerelease=
main: .
changelog:
skip: true
Expand All @@ -44,9 +44,9 @@ dockers:
- "--label=org.label-schema.version={{.Version}}"
- "--label=org.label-schema.name={{.ProjectName}}"
image_templates:
- 'bflad/tfproviderdocs:{{ .Version }}'
- 'bflad/tfproviderdocs:{{ .Major }}.{{ .Minor }}'
- 'bflad/tfproviderdocs:latest'
- 'YakDriver/tfproviderdocs:{{ .Version }}'
- 'YakDriver/tfproviderdocs:{{ .Major }}.{{ .Minor }}'
- 'YakDriver/tfproviderdocs:latest'
milestones:
-
close: true
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ A documentation tool for [Terraform Provider](https://www.terraform.io/docs/prov

### Local Install

Release binaries are available in the [Releases](https://github.com/bflad/tfproviderdocs/releases) section.
Release binaries are available in the [Releases](https://github.com/YakDriver/tfproviderdocs/releases) section.

To instead use Go to install into your `$GOBIN` directory (e.g. `$GOPATH/bin`):

```shell
go install github.com/bflad/tfproviderdocs
go install github.com/YakDriver/tfproviderdocs
```

### Docker Install

```shell
docker pull bflad/tfproviderdocs
docker pull YakDriver/tfproviderdocs
```

### Homebrew Install
Expand Down Expand Up @@ -47,7 +47,7 @@ tfproviderdocs
Change into the directory of the Terraform Provider code and run:

```shell
docker run -v $(pwd):/src bflad/tfproviderdocs
docker run -v $(pwd):/src YakDriver/tfproviderdocs
```

## Available Commands
Expand Down
2 changes: 1 addition & 1 deletion check/check.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"sort"

"github.com/bflad/tfproviderdocs/markdown"
"github.com/YakDriver/tfproviderdocs/markdown"
"github.com/hashicorp/go-multierror"
)

Expand Down
2 changes: 1 addition & 1 deletion check/contents.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package check
import (
"fmt"

"github.com/bflad/tfproviderdocs/check/contents"
"github.com/YakDriver/tfproviderdocs/check/contents"
)

type ContentsCheck struct {
Expand Down
2 changes: 1 addition & 1 deletion check/contents/check_example_section.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"strings"

"github.com/bflad/tfproviderdocs/markdown"
"github.com/YakDriver/tfproviderdocs/markdown"
)

type CheckExamplesSectionOptions struct {
Expand Down
2 changes: 1 addition & 1 deletion check/contents/check_import_section.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"strings"

"github.com/bflad/tfproviderdocs/markdown"
"github.com/YakDriver/tfproviderdocs/markdown"
)

func (d *Document) checkImportSection() error {
Expand Down
2 changes: 1 addition & 1 deletion check/contents/document.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"path/filepath"
"strings"

"github.com/bflad/tfproviderdocs/markdown"
"github.com/YakDriver/tfproviderdocs/markdown"
"github.com/yuin/goldmark/ast"
)

Expand Down
2 changes: 1 addition & 1 deletion command/check.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"strings"
"text/tabwriter"

"github.com/bflad/tfproviderdocs/check"
"github.com/YakDriver/tfproviderdocs/check"
tfjson "github.com/hashicorp/terraform-json"
"github.com/mitchellh/cli"
)
Expand Down
2 changes: 1 addition & 1 deletion command/commands.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package command

import (
"github.com/bflad/tfproviderdocs/version"
"github.com/YakDriver/tfproviderdocs/version"
"github.com/mitchellh/cli"
)

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

import (
"github.com/bflad/tfproviderdocs/version"
"github.com/YakDriver/tfproviderdocs/version"
"github.com/mitchellh/cli"
)

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/bflad/tfproviderdocs
module github.com/YakDriver/tfproviderdocs

go 1.19

Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"os"

"github.com/bflad/tfproviderdocs/command"
"github.com/bflad/tfproviderdocs/version"
"github.com/YakDriver/tfproviderdocs/command"
"github.com/YakDriver/tfproviderdocs/version"
"github.com/mattn/go-colorable"
"github.com/mitchellh/cli"
)
Expand Down

0 comments on commit 6970117

Please sign in to comment.