Skip to content

Commit

Permalink
Gnouc -> cuonglm
Browse files Browse the repository at this point in the history
  • Loading branch information
cuonglm committed Apr 3, 2019
1 parent 87f5049 commit 34d3f1f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.build
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ MAINTAINER "Cuong Manh Le <cuong.manhle.vn@gmail.com>"
RUN apk update && \
apk add git build-base && \
rm -rf /var/cache/apk/* && \
go get -v -d github.com/Gnouc/gogi && \
cd "$GOPATH/src/github.com/Gnouc/gogi/gogi" && \
go get -v -d github.com/cuonglm/gogi && \
cd "$GOPATH/src/github.com/cuonglm/gogi/gogi" && \
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a --installsuffix cgo --ldflags="-s" -o /gogi

COPY Dockerfile.run /
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# gogi - Go client for gitignore.io

[![Build Status](https://travis-ci.org/Gnouc/gogi.svg?branch=master)](https://travis-ci.org/Gnouc/gogi)
[![Go Report Card](https://goreportcard.com/badge/github.com/Gnouc/gogi)](https://goreportcard.com/report/github.com/Gnouc/gogi)
[![GoDoc](https://godoc.org/github.com/Gnouc/gogi?status.svg)](https://godoc.org/github.com/Gnouc/gogi)
[![Build Status](https://travis-ci.org/cuonglm/gogi.svg?branch=master)](https://travis-ci.org/cuonglm/gogi)
[![Go Report Card](https://goreportcard.com/badge/github.com/cuonglm/gogi)](https://goreportcard.com/report/github.com/cuonglm/gogi)
[![GoDoc](https://godoc.org/github.com/cuonglm/gogi?status.svg)](https://godoc.org/github.com/cuonglm/gogi)

# Why gogi?

Make gitignore client more portable, without relying on the shell, curl, wget or any other http client.

# Installation
```sh
go get -u github.com/Gnouc/gogi
go get -u github.com/cuonglm/gogi
```

# Usage
Expand All @@ -21,7 +21,7 @@ import (
"fmt"
"log"

"github.com/Gnouc/gogi"
"github.com/cuonglm/gogi"
)

func main() {
Expand All @@ -37,7 +37,7 @@ func main() {

## As binary:
```sh
$ go get github.com/Gnouc/gogi/cmd/gogi
$ go get github.com/cuonglm/gogi/cmd/gogi
$ gogi
Usage of gogi:
-create string
Expand Down Expand Up @@ -80,4 +80,4 @@ Cuong Manh Le <cuong.manhle.vn@gmail.com>

# License

See [LICENSE](https://github.com/Gnouc/gogi/blob/master/LICENSE)
See [LICENSE](https://github.com/cuonglm/gogi/blob/master/LICENSE)
2 changes: 1 addition & 1 deletion cmd/gogi/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"os"
"strings"

"github.com/Gnouc/gogi"
"github.com/cuonglm/gogi"
)

var (
Expand Down

0 comments on commit 34d3f1f

Please sign in to comment.