Rename the project to shoebill

This commit is contained in:
Nikolai Rodionov
2023-08-02 17:00:34 +02:00
parent 09a594ca60
commit 936d9f132d
25 changed files with 58 additions and 58 deletions

View File

@ -5,13 +5,13 @@ import (
"fmt"
"os"
"git.badhouseplants.net/allanger/giops/internal/build"
"git.badhouseplants.net/allanger/shoebill/internal/build"
"github.com/spf13/cobra"
)
var fullVersion = fmt.Sprintf("%s - %s", build.Version, build.CommitHash)
var longDescription = `---
Giops is just GitOps with a glottal T
shoebill is just GitOps with a glottal T
It's a tool that is supposed to help engineers follow the GitOps practies
without fighting with GitOps being inapplicable to the real world.
@ -28,8 +28,8 @@ Version: %s (build on %s)
var (
rootCmd = &cobra.Command{
Use: "giops",
Short: "giops GitOps without pain, kinda",
Use: "shoebill",
Short: "shoebill GitOps without pain, kinda",
Long: fmt.Sprintf(longDescription, fullVersion, build.BuildTime),
SilenceErrors: true,
SilenceUsage: true,

View File

@ -1,7 +1,7 @@
package cmd
import (
"git.badhouseplants.net/allanger/giops/internal/controller"
"git.badhouseplants.net/allanger/shoebill/internal/controller"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
)