3

Opening a normal cmd prompt on Windows and typing:

meteor

Will work correctly. But won't work in Cygwin (or Babun):

zsh: command not found: meteor

How to make it work ?

Kyll
  • 7,036
  • 7
  • 41
  • 64
Yves Lange
  • 3,914
  • 3
  • 21
  • 33

1 Answers1

7

Adding an alias works like a charm:

alias meteor="meteor.bat"
Kyll
  • 7,036
  • 7
  • 41
  • 64
Yves Lange
  • 3,914
  • 3
  • 21
  • 33