Closed richardtop closed 1 year ago
jazzy --xcodebuild-arguments -scheme,MyCustomSchemeName --documentation=./*.md zsh: no matches found: --documentation=./*.md
jazzy --xcodebuild-arguments -scheme,MyCustomSchemeName --documentation=./*.md
zsh: no matches found: --documentation=./*.md
What could be the issue here? I'm trying to avoid shell expansion when using this command:
jazzy --documentation Full/Path_ToDoc.docc/**.md --xcodebuild-arguments -scheme,MyCustomSchemeName
As this produces the following output:
Leftover unused command-line text: ["Full/Path_ToDoc.docc/File2.md", "Full/Path_ToDoc.docc/File1.md"]
Related: #1295, #850
Quoting solved the issue:
jazzy --xcodebuild-arguments -scheme,MyScheme --documentation='Full/PathToDoc.docc/*.md'
What could be the issue here? I'm trying to avoid shell expansion when using this command:
As this produces the following output:
Related: #1295, #850