From 7a8f7bee9080766cc2d4acb673f7e84259deacdf Mon Sep 17 00:00:00 2001 From: Miccal Matthews Date: Thu, 3 Dec 2020 11:52:26 +0800 Subject: [PATCH] Update source_is_not_there_error.md (#94168) --- doc/reporting_bugs/source_is_not_there_error.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/reporting_bugs/source_is_not_there_error.md b/doc/reporting_bugs/source_is_not_there_error.md index 9a8ec409cae..85f5f9748e8 100644 --- a/doc/reporting_bugs/source_is_not_there_error.md +++ b/doc/reporting_bugs/source_is_not_there_error.md @@ -1,6 +1,6 @@ First, you need to identify which artifact is not being handled correctly anymore. It’s explicit in the error message: if it says `It seems the App source…'` the problem is [`app`](https://github.com/Homebrew/homebrew-cask/blob/master/doc/cask_language_reference/stanzas/app.md). The pattern is the same across [all artifacts](https://github.com/Homebrew/homebrew-cask/blob/master/doc/cask_language_reference/all_stanzas.md#at-least-one-artifact-stanza-is-also-required). -Fixing this error is typically easy, and requires only a bit of time on your part. Start by downloading the package for the cask: `brew cask fetch {{cask_name}}`. The last line of output will inform you of the location of the download. Navigate there and manually unpack it. As an example, lets say the structure inside the archive is as follows: +Fixing this error is typically easy, and requires only a bit of time on your part. Start by downloading the package for the cask: `brew fetch {{cask_name}}`. The last line of output will inform you of the location of the download. Navigate there and manually unpack it. As an example, lets say the structure inside the archive is as follows: ``` . @@ -9,11 +9,11 @@ Fixing this error is typically easy, and requires only a bit of time on your par └─ README.md ``` -Now, let's look at the cask (`brew cask cat {{cask_name}}`): +Now, let's look at the cask (`brew cat {{cask_name}}`): ``` (…) -app 'SomeApp.app' +app "SomeApp.app" (…) ```