You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: internal/cmd/client.go
+10-10
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ package cmd
3
3
import (
4
4
"context"
5
5
"fmt"
6
-
"github.com/jsiebens/proxiro/internal/client"
6
+
"github.com/jsiebens/brink/internal/client"
7
7
"github.com/sirupsen/logrus"
8
8
"github.com/spf13/cobra"
9
9
"golang.org/x/sys/execabs"
@@ -20,7 +20,7 @@ var (
20
20
)
21
21
22
22
funcregisterProxyFlags(command*cobra.Command) {
23
-
command.Flags().StringVarP(&proxyAddrFlag, "proxy-addr", "r", "", fmt.Sprintf("Addr of the Proxiro proxy. This can also be specified via the environment variable %s.", ProxiroProxyAddr))
23
+
command.Flags().StringVarP(&proxyAddrFlag, "proxy-addr", "r", "", fmt.Sprintf("Addr of the Brink proxy. This can also be specified via the environment variable %s.", BrinkProxyAddr))
24
24
command.Flags().BoolVar(&tlsSkipVerify, "tls-skip-verify", false, "Disable verification of TLS certificates, highly discouraged as it decreases the security of data transmissions.")
25
25
command.Flags().StringVar(&caFile, "ca-file", "", "Path on the local disk to a single PEM-encoded CA certificate to verify the proxy or server SSL certificate.")
0 commit comments