Skip to content

Commit

Permalink
Modify: repository name
Browse files Browse the repository at this point in the history
  • Loading branch information
markruler committed Mar 23, 2021
1 parent a6db776 commit fdf6c92
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
## Install

- [Releases](https://github.com/cxsu/swage/releases)
- [Releases](https://github.com/markruler/swage/releases)

```bash
cd /tmp
# curl -LO https://github.com/cxsu/swage/releases/download/${VERSION}/swage_${VERSION}_$(uname -s)_$(uname -p).tar.gz
wget https://github.com/cxsu/swage/releases/download/${VERSION}/swage_${VERSION}_$(uname -s)_$(uname -p).tar.gz
tar zxvf swage_${VERSION}_Linux_x86_64.tar.gz
# curl -LO https://github.com/markruler/swage/releases/download/v0.1.0/swage_v0.1.0_$(uname -s)_$(uname -p).tar.gz
wget https://github.com/markruler/swage/releases/download/v0.1.0/swage_v0.1.0_$(uname -s)_$(uname -p).tar.gz
tar zxvf swage_v0.1.0_Linux_x86_64.tar.gz
sudo mv swage /usr/local/bin/swage
```

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/cxsu/swage
module github.com/markruler/swage

go 1.14

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

"github.com/cxsu/swage/pkg/cmd"
"github.com/markruler/swage/pkg/cmd"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"errors"
"fmt"

"github.com/cxsu/swage/pkg/excel"
"github.com/cxsu/swage/pkg/parser"
"github.com/markruler/swage/pkg/excel"
"github.com/markruler/swage/pkg/parser"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/excel/api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package excel
import (
"testing"

"github.com/cxsu/swage/pkg/parser"
"github.com/go-openapi/spec"
"github.com/markruler/swage/pkg/parser"
"github.com/stretchr/testify/assert"
)

Expand Down

0 comments on commit fdf6c92

Please sign in to comment.