4

I'm learning JavascriptMVC and I'm running the following command in the Terminal, which I got from here:

./js jquery/generate/app cookbook

I'm new to the command line. All of my Googling is coming up with nothing. I imagine I'm missing some kind of configuration or something?

Chris Johnsen
  • 214,407
  • 26
  • 209
  • 186
Spencer Carnage
  • 2,056
  • 2
  • 28
  • 41

1 Answers1

7

That error likely means that 'js' isn't executable. If it's in the current directory, you can make it executable with chmod +x js.

Kirk Kelsey
  • 4,259
  • 1
  • 23
  • 26