Reputation: 2066
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?
Upvotes: 4
Views: 3129
Reputation: 4544
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
.
Upvotes: 7