Skip to content

Commit 18ee2c9

Browse files
authored
[Github App] devbox cloud app rename to jetify (#2002)
## Summary ## How was it tested?
1 parent c8d2ffd commit 18ee2c9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/app/docs/devbox_cloud/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Each Devbox playground comes with the Devbox CLI, Nix, and several common packag
2525
### Open a GitHub Repository in devbox.sh
2626

2727
:::note
28-
If you are trying to open a private repository on Devbox.sh, we may ask you to install the [**Devbox Cloud app**](https://github.com/apps/devbox-cloud) from the Github Marketplace. This grants permissions to clone your repositories to the cloud VMs
28+
If you are trying to open a private repository on Devbox.sh, we may ask you to install the [**Jetify Cloud app**](https://github.com/apps/jetify-cloud) from the Github Marketplace. This grants permissions to clone your repositories to the cloud VMs
2929
:::
3030

3131
1. Navigate to the Github Repo that you want to preview on Devbox.sh

internal/cloud/cloud.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -581,14 +581,14 @@ func ensureProjectDirIsNotSensitive(dir string) error {
581581

582582
if isSensitiveDir(dir) {
583583
// check for a git repository in this folder before using this project config
584-
// (and potentially syncing all the code to devbox-cloud)
584+
// (and potentially syncing all the code to jetify-cloud)
585585
_, err := os.Stat(filepath.Join(dir, ".git"))
586586
if err != nil {
587587
if errors.Is(err, fs.ErrNotExist) {
588588
return usererr.New(
589589
"Found a config (devbox.json) file at %s, "+
590590
"but since it is a sensitive directory we require it to be part of a git repository "+
591-
"before we sync it to devbox cloud",
591+
"before we sync it to jetify cloud",
592592
dir,
593593
)
594594
}

0 commit comments

Comments
 (0)