Skip to content

Commit 43481bb

Browse files
authored
[easy] rename jetpack-cloud to jetify-cloud (#2068)
``` % git grep "jetpack cloud" internal/boxcli/push.go: Short: "Push a [global] config. Leave empty to use jetpack cloud. Can " + internal/boxcli/secrets.go: Short: "Interact with devbox secrets in jetpack cloud.", internal/boxcli/secrets.go: Short: "Initialize secrets management with jetpack cloud", internal/devbox/devbox.go: "Ignoring env_from directive. jetpack cloud secrets is not "+ internal/devbox/devbox.go: "Error reading secrets from jetpack cloud: %s\n\n", internal/pullbox/s3/pull.go: "Logged in as %s, pulling from jetpack cloud (profile: %s)\n", ``` cleared these up
1 parent 5def0a8 commit 43481bb

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

internal/boxcli/push.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ func pushCmd() *cobra.Command {
2222
flags := pushCmdFlags{}
2323
cmd := &cobra.Command{
2424
Use: "push <git-repo>",
25-
Short: "Push a [global] config. Leave empty to use jetpack cloud. Can " +
25+
Short: "Push a [global] config. Leave empty to use jetify cloud. Can " +
2626
"be a git repo for self storage.",
2727
Args: cobra.MaximumNArgs(1),
2828
RunE: func(cmd *cobra.Command, args []string) error {

internal/boxcli/secrets.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ func secretsCmd() *cobra.Command {
5252
cmd := &cobra.Command{
5353
Use: "secrets",
5454
Aliases: []string{"envsec"},
55-
Short: "Interact with devbox secrets in jetpack cloud.",
55+
Short: "Interact with devbox secrets in jetify cloud.",
5656
PersistentPreRunE: ensureNixInstalled,
5757
}
5858
cmd.AddCommand(secretsDownloadCmd(flags))
@@ -71,7 +71,7 @@ func secretsInitCmd(secretsFlags *secretsFlags) *cobra.Command {
7171
flags := secretsInitCmdFlags{}
7272
cmd := &cobra.Command{
7373
Use: "init",
74-
Short: "Initialize secrets management with jetpack cloud",
74+
Short: "Initialize secrets management with jetify cloud",
7575
Args: cobra.ExactArgs(0),
7676
RunE: func(cmd *cobra.Command, args []string) error {
7777
return secretsInitFunc(cmd, flags, secretsFlags)

internal/devbox/devbox.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1164,15 +1164,15 @@ func (d *Devbox) configEnvs(
11641164
} else if err != nil {
11651165
ux.Fwarning(
11661166
d.stderr,
1167-
"Ignoring env_from directive. jetpack cloud secrets is not "+
1167+
"Ignoring env_from directive. jetify cloud secrets is not "+
11681168
"initialized. Run `devbox secrets init` to initialize it.\n",
11691169
)
11701170
} else {
11711171
cloudSecrets, err := secrets.List(ctx)
11721172
if err != nil {
11731173
ux.Fwarning(
11741174
os.Stderr,
1175-
"Error reading secrets from jetpack cloud: %s\n\n",
1175+
"Error reading secrets from jetify cloud: %s\n\n",
11761176
err,
11771177
)
11781178
} else {

internal/pullbox/s3/pull.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ func PullToTmp(
3636

3737
ux.Finfo(
3838
os.Stderr,
39-
"Logged in as %s, pulling from jetpack cloud (profile: %s)\n",
39+
"Logged in as %s, pulling from jetify cloud (profile: %s)\n",
4040
creds.Email,
4141
profile,
4242
)

0 commit comments

Comments
 (0)