haf / expecto

A smooth testing lib for F#. APIs made for humans! Strong testing methodologies for everyone!
Apache License 2.0
663 stars 96 forks source link

Quickstart not working #416

Open inouiw opened 3 years ago

inouiw commented 3 years ago

I run dotnet new -i Expecto.Template::* and got zsh: no matches found: Expecto.Template::*

my dotnet --version is 5.0.202. I am using MacOS.

baronfel commented 3 years ago

Make sure on shells that use the * character for expansion/globbing that you wrap the entire template name expression in quotes:

dotnet new -i "Expecto.Template::*"