From 01797c53d4210bb51a3062c9c569364454d33aff Mon Sep 17 00:00:00 2001 From: Loek Duys Date: Wed, 17 Apr 2024 09:19:45 +0200 Subject: [PATCH 1/2] fix(bug): Update index.md Fixed a bug in the cleanup script. The command `rad app delete demo -y` results in this output: `Application 'demo' does not exist or has already been deleted.` The command should be: `rad app delete -y` The output will be: `Application first-app deleted` Signed-off-by: Loek Duys --- docs/content/getting-started/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/getting-started/index.md b/docs/content/getting-started/index.md index 818b1c6d0..c24b6c99b 100644 --- a/docs/content/getting-started/index.md +++ b/docs/content/getting-started/index.md @@ -190,7 +190,7 @@ Resources: To delete your app, run the [rad app delete]({{< ref rad_application_delete >}}) command to cleanup the app and its resources, including the Recipe resources: ```bash -rad app delete demo -y +rad app delete -y ``` ## Next steps From 8a40917ef647f48797b8a44de87326dc008e294f Mon Sep 17 00:00:00 2001 From: Reshma Abdul Rahim <61033581+Reshrahim@users.noreply.github.com> Date: Fri, 19 Apr 2024 09:55:52 -0400 Subject: [PATCH 2/2] Update docs/content/getting-started/index.md Signed-off-by: Reshma Abdul Rahim <61033581+Reshrahim@users.noreply.github.com> --- docs/content/getting-started/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/getting-started/index.md b/docs/content/getting-started/index.md index c24b6c99b..eacfdae70 100644 --- a/docs/content/getting-started/index.md +++ b/docs/content/getting-started/index.md @@ -190,7 +190,7 @@ Resources: To delete your app, run the [rad app delete]({{< ref rad_application_delete >}}) command to cleanup the app and its resources, including the Recipe resources: ```bash -rad app delete -y +rad app delete first-app -y ``` ## Next steps