no matches found: *.dmg

C++
# Zsh error:
zsh: no matches found: 

# Solution:
# If you're using a wildcard (e.g. *) in your search, escape it with \
# E.g. echo /path/to/directory/\*.jpg## set in .zshrc
unsetopt nomatch
Source

Also in C++: