Skip to content

Commit 27259db

Browse files
Move naming from 1buildgo to 1build
1 parent b6eb1d1 commit 27259db

22 files changed

+60
-37
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.idea/
22
vendor/
3-
.1buildgo
4-
1buildgo
3+
.1build
4+
1build
55
dist/
66

77
!1build.yaml

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ before_install:
88
- go get -u --insecure github.com/golang/dep/cmd/dep
99
- dep ensure
1010
script:
11-
- go test -v -cover github.com/gopinath-langote/1buildgo/testing -run .
11+
- go test -v -cover github.com/gopinath-langote/1build/testing -run .
1212

1build.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package main
22

3-
import "github.com/gopinath-langote/1buildgo/cmd"
3+
import "github.com/gopinath-langote/1build/cmd"
44

55
func main() {
66
cmd.Execute()

1build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ before: echo b
33
after: echo 1
44
commands:
55
- b: echo han
6-
- test: go test -v -cover github.com/gopinath-langote/1buildgo/testing -run . GOCACHE=off
6+
- test: go test -v -cover github.com/gopinath-langote/1build/testing -run . GOCACHE=off

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Create or find an issue you would like to implement:
2121

2222
2. Make sure that all the existing tests are passed, extend tests if needed
2323
```sh
24-
go test -v -cover github.com/gopinath-langote/1buildgo/testing -run .
24+
go test -v -cover github.com/gopinath-langote/1build/testing -run .
2525
```
2626
3. Project uses major library to build app - [cobra](https://github.com/spf13/cobra)
2727
4. Update necessary documents if needed – Readme etc.

Gopkg.lock

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
<a href="https://travis-ci.org/gopinath-langote/1build">
1818
<img src="https://travis-ci.org/gopinath-langote/1build.svg?branch=master" alt="Build Status">
1919
</a>
20-
<a href="https://goreportcard.com/report/github.com/gopinath-langote/1buildgo">
21-
<img src="https://goreportcard.com/badge/github.com/gopinath-langote/1buildgo" alt="Go Report Card">
20+
<a href="https://goreportcard.com/report/github.com/gopinath-langote/1build">
21+
<img src="https://goreportcard.com/badge/github.com/gopinath-langote/1build" alt="Go Report Card">
2222
</a>
2323
</p>
2424

cmd/config/parse.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package config
22

33
import (
44
"errors"
5-
"github.com/gopinath-langote/1buildgo/cmd/utils"
5+
"github.com/gopinath-langote/1build/cmd/utils"
66
"gopkg.in/yaml.v3"
77
"strings"
88
)

cmd/exec/exec.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package exec
33
import (
44
"errors"
55
"github.com/codeskyblue/go-sh"
6-
"github.com/gopinath-langote/1buildgo/cmd/config"
7-
"github.com/gopinath-langote/1buildgo/cmd/utils"
6+
"github.com/gopinath-langote/1build/cmd/config"
7+
"github.com/gopinath-langote/1build/cmd/utils"
88
)
99

1010
func ExecuteCommandAndExit(commands ...string) {

cmd/init.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package cmd
22

33
import (
4-
"github.com/gopinath-langote/1buildgo/cmd/config"
5-
"github.com/gopinath-langote/1buildgo/cmd/utils"
4+
"github.com/gopinath-langote/1build/cmd/config"
5+
"github.com/gopinath-langote/1build/cmd/utils"
66
"github.com/spf13/cobra"
77
)
88

0 commit comments

Comments
 (0)