realm / jazzy

Soulful docs for Swift & Objective-C
https://realm.io
MIT License
7.35k stars 413 forks source link

zsh: no matches found: --documentation=./*.md #1373

Closed richardtop closed 1 year ago

richardtop commented 1 year ago

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

richardtop commented 1 year ago

Quoting solved the issue:

jazzy --xcodebuild-arguments -scheme,MyScheme --documentation='Full/PathToDoc.docc/*.md'