Skip to content

Commit 0b02b42

Browse files
authored
Fix go module name (#12)
Signed-off-by: Philipp Stehle <[email protected]>
1 parent 8e6d0b4 commit 0b02b42

34 files changed

+41
-35
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ GO?=go
44
bin:
55
rm -f bin/devbao
66
mkdir -p bin/
7-
$(GO) build -o bin/devbao github.com/cipherboy/devbao/cmd/devbao
7+
$(GO) build -o bin/devbao github.com/openbao/devbao/cmd/devbao
88
ls -lh bin/devbao
99

1010
.PHONY: fmt

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ and a common configuration directory.
99

1010
Missing an option? Open a pull request!
1111

12+
## Install
13+
14+
```$
15+
$ go install github.com/openbao/devbao/cmd/devbao@main
16+
```
17+
1218
## Building
1319

1420
To build and run:

cmd/devbao/cluster_build.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/cipherboy/devbao/pkg/bao"
6+
"github.com/openbao/devbao/pkg/bao"
77

88
"github.com/urfave/cli/v2"
99
)

cmd/devbao/cluster_clean.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66
"strings"
77

8-
"github.com/cipherboy/devbao/pkg/bao"
8+
"github.com/openbao/devbao/pkg/bao"
99

1010
"github.com/urfave/cli/v2"
1111
)

cmd/devbao/cluster_join.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/cipherboy/devbao/pkg/bao"
6+
"github.com/openbao/devbao/pkg/bao"
77

88
"github.com/urfave/cli/v2"
99
)

cmd/devbao/cluster_list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"strings"
66

7-
"github.com/cipherboy/devbao/pkg/bao"
7+
"github.com/openbao/devbao/pkg/bao"
88

99
"github.com/urfave/cli/v2"
1010
)

cmd/devbao/cluster_remove.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/cipherboy/devbao/pkg/bao"
6+
"github.com/openbao/devbao/pkg/bao"
77

88
"github.com/urfave/cli/v2"
99
)

cmd/devbao/cluster_start.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strings"
88
"time"
99

10-
"github.com/cipherboy/devbao/pkg/bao"
10+
"github.com/openbao/devbao/pkg/bao"
1111

1212
"github.com/urfave/cli/v2"
1313
)

cmd/devbao/node_clean.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66
"strings"
77

8-
"github.com/cipherboy/devbao/pkg/bao"
8+
"github.com/openbao/devbao/pkg/bao"
99

1010
"github.com/urfave/cli/v2"
1111
)

cmd/devbao/node_dir.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/cipherboy/devbao/pkg/bao"
6+
"github.com/openbao/devbao/pkg/bao"
77

88
"github.com/urfave/cli/v2"
99
)

0 commit comments

Comments
 (0)