4

On bower.io there is a warning that says:

Warning

On prezto or oh-my-zsh, do not forget to alias bower='noglob bower' or bower install jquery#1.9.1

I didn't see this before and I'm already working in a project where I have to use bower install, and everything looks normal so far.

I'm pretty curious about it, why is that, should I worry?

Community
  • 1
  • 1
raulricardo21
  • 2,499
  • 4
  • 20
  • 27

1 Answers1

14

# is used for pattern removal in zsh (see the "Standard forms: pattern removal" section).

Either alias it with noglob or quote 'jquery#1.9.1' every time.

Sindre Sorhus
  • 62,972
  • 39
  • 168
  • 232
  • Good answer. Shouldn't be a problem if you always add packages to your dependency file before installing. – jrhorn424 Sep 23 '13 at 04:29